]> git.saurik.com Git - wxWidgets.git/commitdiff
getting rid of warnings for unused params
authorStefan Csomor <csomor@advancedconcepts.ch>
Wed, 30 Jul 2008 04:57:23 +0000 (04:57 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Wed, 30 Jul 2008 04:57:23 +0000 (04:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54841 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/osx/core/private.h

index 08807ebba70115bf6721a2c78182b9d235b62c0e..d14d919dc8c1bdf755eadafe407e865345ed1c20 100644 (file)
@@ -179,12 +179,12 @@ public :
     {
     }
 
     {
     }
 
-    virtual bool Show(bool show)
+    virtual bool Show(bool WXUNUSED(show))
     {
         return false;
     }
     
     {
         return false;
     }
     
-    virtual bool ShowWithEffect(bool show, wxShowEffect effect, unsigned timeout)
+    virtual bool ShowWithEffect(bool show, wxShowEffect WXUNUSED(effect), unsigned WXUNUSED(timeout))
     {
         return Show(show);
     }
     {
         return Show(show);
     }
@@ -193,21 +193,21 @@ public :
     {
     }
 
     {
     }
 
-    virtual bool SetTransparent(wxByte alpha)
+    virtual bool SetTransparent(wxByte WXUNUSED(alpha))
     {
         return false;
     }
 
     {
         return false;
     }
 
-    virtual bool SetBackgroundColour(const wxColour& col )
+    virtual bool SetBackgroundColour(const wxColour& WXUNUSED(col) )
     {
         return false;
     }
 
     {
         return false;
     }
 
-    virtual void SetExtraStyle( long exStyle )
+    virtual void SetExtraStyle( long WXUNUSED(exStyle) )
     {
     }
     
     {
     }
     
-    virtual bool SetBackgroundStyle(wxBackgroundStyle style)
+    virtual bool SetBackgroundStyle(wxBackgroundStyle WXUNUSED(style))
     {            
         return false ;
     }
     {            
         return false ;
     }
@@ -222,7 +222,7 @@ public :
     virtual void GetPosition( int &x, int &y ) const = 0;
     virtual void GetSize( int &width, int &height ) const = 0;
 
     virtual void GetPosition( int &x, int &y ) const = 0;
     virtual void GetSize( int &width, int &height ) const = 0;
 
-    virtual bool SetShape(const wxRegion& region)
+    virtual bool SetShape(const wxRegion& WXUNUSED(region))
     {
         return false;
     }
     {
         return false;
     }