diff options
author | Cedric BAIL <c.bail@partner.samsung.com> | 2014-06-27 13:34:02 +0200 |
---|---|---|
committer | Cedric BAIL <c.bail@partner.samsung.com> | 2014-06-27 13:34:02 +0200 |
commit | b2245de3aebeea789117a1cef43ad45542d62ddf (patch) | |
tree | 52e44b21ac9990024f227a7b7bf21799a88af1ce /src/lib/ecore_win32/ecore_win32_window.c | |
parent | a449ca47f16fcd4917224e85e7114745b9f4a845 (diff) |
ecore_win32: another forgotten read that is unecessary in current setup.
Diffstat (limited to 'src/lib/ecore_win32/ecore_win32_window.c')
-rw-r--r-- | src/lib/ecore_win32/ecore_win32_window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ecore_win32/ecore_win32_window.c b/src/lib/ecore_win32/ecore_win32_window.c index 36f8a86047..b612580b6d 100644 --- a/src/lib/ecore_win32/ecore_win32_window.c +++ b/src/lib/ecore_win32/ecore_win32_window.c | |||
@@ -43,7 +43,7 @@ ecore_win32_window_internal_new(Ecore_Win32_Window *parent, | |||
43 | RECT rect; | 43 | RECT rect; |
44 | Ecore_Win32_Window *w; | 44 | Ecore_Win32_Window *w; |
45 | int minimal_width; | 45 | int minimal_width; |
46 | int minimal_height; | 46 | /* int minimal_height; */ |
47 | 47 | ||
48 | w = (Ecore_Win32_Window *)calloc(1, sizeof(Ecore_Win32_Window)); | 48 | w = (Ecore_Win32_Window *)calloc(1, sizeof(Ecore_Win32_Window)); |
49 | if (!w) | 49 | if (!w) |
@@ -64,7 +64,7 @@ ecore_win32_window_internal_new(Ecore_Win32_Window *parent, | |||
64 | } | 64 | } |
65 | 65 | ||
66 | minimal_width = GetSystemMetrics(SM_CXMIN); | 66 | minimal_width = GetSystemMetrics(SM_CXMIN); |
67 | minimal_height = GetSystemMetrics(SM_CYMIN); | 67 | /* minimal_height = GetSystemMetrics(SM_CYMIN); */ |
68 | /* if (((rect.right - rect.left) < minimal_width) || */ | 68 | /* if (((rect.right - rect.left) < minimal_width) || */ |
69 | /* ((rect.bottom - rect.top) < minimal_height)) */ | 69 | /* ((rect.bottom - rect.top) < minimal_height)) */ |
70 | /* { */ | 70 | /* { */ |