]> git.saurik.com Git - wxWidgets.git/commitdiff
fix unused variables and parameters warnings
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 15 Dec 2007 13:59:54 +0000 (13:59 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 15 Dec 2007 13:59:54 +0000 (13:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50720 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/popupwin.cpp
src/mac/carbon/renderer.cpp

index 4049f004308de3048bd713e9f4761e52d22bde91..b60673a5f2732cafd12aa054c5ef0f5962c3258f 100644 (file)
@@ -51,7 +51,7 @@ wxPopupWindow::~wxPopupWindow()
     }
 }
 
-bool wxPopupWindow::Create(wxWindow *parent, int flags)
+bool wxPopupWindow::Create(wxWindow *parent, int WXUNUSED(flags))
 {
     m_macIsUserPane = false ;
 
@@ -63,13 +63,15 @@ bool wxPopupWindow::Create(wxWindow *parent, int flags)
 
     WindowClass wclass = kHelpWindowClass;
     WindowAttributes attr = kWindowCompositingAttribute ;
-    WindowRef parentWindow =(WindowRef) parent->MacGetTopLevelWindowRef();
 
     Rect bounds = { 0,0,0,0 };
     OSStatus err = ::CreateNewWindow( wclass , attr , &bounds , (WindowRef*)&m_popupWindowRef ) ;
     if ( err == noErr )
     {
-//        SetWindowGroup( (WindowRef) m_popupWindowRef, GetWindowGroup(parentWindow));    //  Put them in the same group so that their window layers are consistent
+#if 0
+        WindowRef parentWindow =(WindowRef) parent->MacGetTopLevelWindowRef();
+        SetWindowGroup( (WindowRef) m_popupWindowRef, GetWindowGroup(parentWindow));    //  Put them in the same group so that their window layers are consistent
+#endif
 }
 
     m_peer = new wxMacControl(this , true /*isRootControl*/) ;
index fb5e8d29aaf2e518b734d7937f6c093dc102bf3b..abcc1d6aa2b655e960921e2b1af05663199ec120 100644 (file)
@@ -127,7 +127,7 @@ int wxRendererMac::DrawHeaderButton( wxWindow *win,
     {
         CGContextRef cgContext;
         wxGCDCImpl *impl = (wxGCDCImpl*) dc.GetImpl();
-        
+
         cgContext = (CGContextRef) impl->GetGraphicsContext()->GetNativeContext();
 
         {
@@ -250,7 +250,7 @@ void wxRendererMac::DrawSplitterSash( wxWindow *win,
 
     if ( !dc.IsKindOf( CLASSINFO( wxPaintDC ) ) )
     {
-        wxRect rect( (int) splitterRect.origin.x, (int) splitterRect.origin.y, (int) splitterRect.size.width, 
+        wxRect rect( (int) splitterRect.origin.x, (int) splitterRect.origin.y, (int) splitterRect.size.width,
                      (int) splitterRect.size.height );
         win->Refresh( &rect );
    }
@@ -269,19 +269,19 @@ void wxRendererMac::DrawSplitterSash( wxWindow *win,
 }
 
 void
-wxRendererMac::DrawItemSelectionRect(wxWindow *win,
+wxRendererMac::DrawItemSelectionRect(wxWindow * WXUNUSED(win),
                                      wxDC& dc,
                                      const wxRect& rect,
-                                     int flags )
+                                     int flags)
 {
     if ( !(flags & wxCONTROL_SELECTED) )
         return;
-    
-    wxColour col( wxMacCreateCGColorFromHITheme( (flags & wxCONTROL_FOCUSED) ? 
+
+    wxColour col( wxMacCreateCGColorFromHITheme( (flags & wxCONTROL_FOCUSED) ?
                                                  kThemeBrushAlternatePrimaryHighlightColor
                                                                              : kThemeBrushSecondaryHighlightColor ) );
     wxBrush selBrush( col );
-    
+
     dc.SetPen( *wxTRANSPARENT_PEN );
     dc.SetBrush( selBrush );
     dc.DrawRectangle( rect );