]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/private.h
Fixed sorting and commiting support for native virtual wxListCtrl, although leaving...
[wxWidgets.git] / include / wx / msw / private.h
index c1b5e3e4cf4accdeb3f31ccff33b98a6c6579499..dd0bd996a37836fcae9a5fd3f6eff4811a049b44 100644 (file)
@@ -335,9 +335,7 @@ inline RECT wxGetWindowRect(HWND hwnd)
     RECT rect;
 
     if ( !::GetWindowRect(hwnd, &rect) )
-    {
         wxLogLastError(_T("GetWindowRect"));
-    }
 
     return rect;
 }
@@ -347,9 +345,7 @@ inline RECT wxGetClientRect(HWND hwnd)
     RECT rect;
 
     if ( !::GetClientRect(hwnd, &rect) )
-    {
         wxLogLastError(_T("GetClientRect"));
-    }
 
     return rect;
 }
@@ -591,9 +587,7 @@ public:
     {
         m_ptr = GlobalLock(hGlobal);
         if ( !m_ptr )
-        {
             wxLogLastError(_T("GlobalLock"));
-        }
     }
 
     ~GlobalPtrLock()