]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fix (missing void)
authorVáclav Slavík <vslavik@fastmail.fm>
Mon, 25 Sep 2006 14:35:16 +0000 (14:35 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Mon, 25 Sep 2006 14:35:16 +0000 (14:35 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41437 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/univ/toplevel.h
src/univ/topluniv.cpp

index 17681cfd9aa9f64f5fbfb1b072c0a6cbe398446c..8b451f6ba1276bda41a2875cda73ef069aba0087 100644 (file)
@@ -122,7 +122,7 @@ public:
     // decorations anyhow and that by default native decorations are used
     //
     // if UseNativeDecorations() is used, it must be called before Create()
     // decorations anyhow and that by default native decorations are used
     //
     // if UseNativeDecorations() is used, it must be called before Create()
-    static UseNativeDecorationsByDefault(bool native = true);
+    static void UseNativeDecorationsByDefault(bool native = true);
     void UseNativeDecorations(bool native = true);
     bool IsUsingNativeDecorations() const;
 
     void UseNativeDecorations(bool native = true);
     bool IsUsingNativeDecorations() const;
 
index fa5ecced1126bc772c32d3a6946dbb0ab28816e1..89c2cfb0c7d8279f3945a1d54f45c32a6db3212b 100644 (file)
@@ -155,7 +155,8 @@ bool wxTopLevelWindow::ShowFullScreen(bool show, long style)
     return wxTopLevelWindowNative::ShowFullScreen(show, style);
 }
 
     return wxTopLevelWindowNative::ShowFullScreen(show, style);
 }
 
-/* static */ wxTopLevelWindow::UseNativeDecorationsByDefault(bool native)
+/* static */
+void wxTopLevelWindow::UseNativeDecorationsByDefault(bool native)
 {
     ms_drawDecorations = !native;
 }
 {
     ms_drawDecorations = !native;
 }