Ecore_Win32: fix initialization of base_width/height values

SVN revision: 68922
This commit is contained in:
Vincent Torri 2012-03-07 10:28:48 +00:00
parent 62b691f050
commit 06f5ecf546
2 changed files with 4 additions and 4 deletions

View File

@ -71,8 +71,8 @@ struct _Ecore_Win32_Window
unsigned int min_height;
unsigned int max_width;
unsigned int max_height;
unsigned int base_width;
unsigned int base_height;
int base_width;
int base_height;
unsigned int step_width;
unsigned int step_height;

View File

@ -107,8 +107,8 @@ ecore_win32_window_internal_new(Ecore_Win32_Window *parent,
w->min_height = 0;
w->max_width = 32767;
w->max_height = 32767;
w->base_width = 0;
w->base_height = 0;
w->base_width = -1;
w->base_height = -1;
w->step_width = 1;
w->step_height = 1;