Ecore_Win32: fix default values

SVN revision: 65543
This commit is contained in:
Vincent Torri 2011-11-23 21:21:33 +00:00
parent 85e4bdab8e
commit 1dcbea2738
1 changed files with 4 additions and 4 deletions

View File

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