SVN revision: 67611
This commit is contained in:
Andreas Volz 2012-01-30 22:03:22 +00:00
parent 524bd40d17
commit 460b35fe6f
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class Size
~Size() {};
void set( Evas_Coord dx, Evas_Coord dy ) { _dx = dx; _dy = dy; };
void width( Evas_Coord width ) { _dx = width; }
void heigth( Evas_Coord height ) { _dy = height; }
void height( Evas_Coord height ) { _dy = height; }
Evas_Coord width() const { return _dx; };
Evas_Coord height() const { return _dy; };
private: