From 460b35fe6f58569af9eb61b24cc026193c200d51 Mon Sep 17 00:00:00 2001 From: Andreas Volz Date: Mon, 30 Jan 2012 22:03:22 +0000 Subject: [PATCH] API typo SVN revision: 67611 --- eflxx/include/eflxx/Common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: