cedric pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=b2245de3aebeea789117a1cef43ad45542d62ddf

commit b2245de3aebeea789117a1cef43ad45542d62ddf
Author: Cedric BAIL <[email protected]>
Date:   Fri Jun 27 13:34:02 2014 +0200

    ecore_win32: another forgotten read that is unecessary in current setup.
---
 src/lib/ecore_win32/ecore_win32_window.c | 4 ++--
 1 file 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 36f8a86..b612580 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,
    RECT                rect;
    Ecore_Win32_Window *w;
    int                 minimal_width;
-   int                 minimal_height;
+   /* int                 minimal_height; */
 
    w = (Ecore_Win32_Window *)calloc(1, sizeof(Ecore_Win32_Window));
    if (!w)
@@ -64,7 +64,7 @@ ecore_win32_window_internal_new(Ecore_Win32_Window *parent,
      }
 
    minimal_width = GetSystemMetrics(SM_CXMIN);
-   minimal_height = GetSystemMetrics(SM_CYMIN);
+   /* minimal_height = GetSystemMetrics(SM_CYMIN); */
 /*    if (((rect.right - rect.left) < minimal_width) || */
 /*        ((rect.bottom - rect.top) < minimal_height)) */
 /*      { */

-- 


Reply via email to