Remove virtual_size_set code (turns out, it's not needed).

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 84151
This commit is contained in:
Christopher Michael 2013-02-19 10:56:48 +00:00 committed by Christopher Michael
parent 70380b6125
commit 055ccc581e
2 changed files with 0 additions and 15 deletions

View File

@ -12,8 +12,6 @@ struct _E_Smart_Data
/* geometry */
int x, y, w, h;
Evas_Coord vw, vh;
struct
{
Evas_Coord mode_width, mode_height;
@ -186,18 +184,6 @@ e_smart_monitor_output_set(Evas_Object *obj, Ecore_X_Randr_Output output)
sd->min.mode_height = mode->height;
}
void
e_smart_monitor_virtual_size_set(Evas_Object *obj, Evas_Coord vw, Evas_Coord vh)
{
E_Smart_Data *sd;
/* try to get the objects smart data */
if (!(sd = evas_object_smart_data_get(obj))) return;
sd->vw = vw;
sd->vh = vh;
}
void
e_smart_monitor_grid_set(Evas_Object *obj, Evas_Object *grid)
{

View File

@ -6,7 +6,6 @@
Evas_Object *e_smart_monitor_add(Evas *evas);
void e_smart_monitor_crtc_set(Evas_Object *obj, Ecore_X_Randr_Crtc crtc);
void e_smart_monitor_output_set(Evas_Object *obj, Ecore_X_Randr_Output output);
void e_smart_monitor_virtual_size_set(Evas_Object *obj, Evas_Coord vw, Evas_Coord vh);
void e_smart_monitor_grid_set(Evas_Object *obj, Evas_Object *grid);
# endif