]> git.saurik.com Git - wxWidgets.git/commitdiff
Compilation fix after a bad merge.
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 12 Oct 2011 18:08:13 +0000 (18:08 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 12 Oct 2011 18:08:13 +0000 (18:08 +0000)
Fix bad merge artefact in the previous commit.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69391 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/toplevel.cpp

index 4a8bd7c5d8cd52d2ab3241a88a12b57fa2e320e5..4d73a656d967dae6c2e752143124f70e3b8b46cf 100644 (file)
@@ -329,8 +329,8 @@ void wxTopLevelWindowGTK::GTKHandleRealized()
     if (icons.GetIconCount())
         SetIcons(icons);
 
     if (icons.GetIconCount())
         SetIcons(icons);
 
-    if (win->HasFlag(wxFRAME_SHAPED))
-        win->SetShape(win->m_shape); // it will really set the window shape now
+    if (HasFlag(wxFRAME_SHAPED))
+        SetShape(win->m_shape); // it will really set the window shape now
 }
 
 //-----------------------------------------------------------------------------
 }
 
 //-----------------------------------------------------------------------------