]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/listctrl.cpp
use generic dialogs under Palm (generic.diff part of patch 1894861)
[wxWidgets.git] / src / generic / listctrl.cpp
index d58f84467e61fcf01a9839dafa46d508b13ffc65..f6bb4d3199b3cbb4437d2f6e0e9da9abe6975f70 100644 (file)
@@ -1569,6 +1569,9 @@ void wxListLineData::DrawInReportMode( wxDC *dc,
         int xOld = x;
         x += width;
 
+        const int wText = width - 8;
+        wxDCClipper clipper(*dc, xOld, rect.y, wText, rect.height);
+
         if ( item->HasImage() )
         {
             int ix, iy;
@@ -1582,7 +1585,7 @@ void wxListLineData::DrawInReportMode( wxDC *dc,
         }
 
         if ( item->HasText() )
-            DrawTextFormatted(dc, item->GetText(), col, xOld, yMid, width - 8);
+            DrawTextFormatted(dc, item->GetText(), col, xOld, yMid, wText);
     }
 }