From: caro Date: Wed, 23 Nov 2011 21:21:33 +0000 (+0000) Subject: Ecore_Win32: fix default values X-Git-Tag: 2.0_alpha~112^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6bc1c7e8c9e02bb3955715c22ca0153206acd315;p=framework%2Fuifw%2Fecore.git Ecore_Win32: fix default values git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@65543 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/ecore_win32/ecore_win32_window.c b/src/lib/ecore_win32/ecore_win32_window.c index 9781faf..459f051 100644 --- a/src/lib/ecore_win32/ecore_win32_window.c +++ b/src/lib/ecore_win32/ecore_win32_window.c @@ -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;