From 1dcbea2738667a521daf553f6c59986f26a28079 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Wed, 23 Nov 2011 21:21:33 +0000 Subject: [PATCH] Ecore_Win32: fix default values SVN revision: 65543 --- legacy/ecore/src/lib/ecore_win32/ecore_win32_window.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/legacy/ecore/src/lib/ecore_win32/ecore_win32_window.c b/legacy/ecore/src/lib/ecore_win32/ecore_win32_window.c index 9781faf7ad..459f0518e1 100644 --- a/legacy/ecore/src/lib/ecore_win32/ecore_win32_window.c +++ b/legacy/ecore/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;