diff --git a/eflxx/include/eflxx/Common.h b/eflxx/include/eflxx/Common.h index 4b9cbcf..307d226 100644 --- a/eflxx/include/eflxx/Common.h +++ b/eflxx/include/eflxx/Common.h @@ -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: