]> git.saurik.com Git - wxWidgets.git/commitdiff
Renderer should only be used for GTK+ 2
authorJulian Smart <julian@anthemion.co.uk>
Fri, 20 May 2005 08:17:11 +0000 (08:17 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 20 May 2005 08:17:11 +0000 (08:17 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34190 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/grid.cpp

index e3169c5357a8cc04592f3a58220bdfb4dec7fb0f..78e502fc7557a2dcf865761cacd41680d35ede0e 100644 (file)
@@ -7259,7 +7259,7 @@ void wxGrid::DrawRowLabel( wxDC& dc, int row )
         return;
 
     wxRect rect;
-#ifdef __WXGTK__
+#ifdef __WXGTK20__
     rect.SetX( 1 );
     rect.SetY( GetRowTop(row) + 1 );
     rect.SetWidth( m_rowLabelWidth - 2 );
@@ -7323,7 +7323,7 @@ void wxGrid::DrawColLabel( wxDC& dc, int col )
     int colLeft = GetColLeft(col);
 
     wxRect rect;
-#ifdef __WXGTK__
+#ifdef __WXGTK20__
     rect.SetX( colLeft + 1 );
     rect.SetY( 1 );
     rect.SetWidth( GetColWidth(col) - 2 );