]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/window.cpp
more GTK2+ANSI fixes
[wxWidgets.git] / src / gtk1 / window.cpp
index 8e6e0f5a81628427ef793148df463cdd8793ea41..8947ad7008493ac4adc1d606eae44ff256588d15 100644 (file)
@@ -3575,10 +3575,9 @@ void wxWindowGTK::GetTextExtent( const wxString& string,
         pango_layout_set_text(layout, (const char*) data, strlen( (const char*) data ));
 #endif
     }
-    PangoLayoutLine *line = pango_layout_get_line(layout, 0);
 
     PangoRectangle rect;
-    pango_layout_line_get_extents(line, NULL, &rect);
+    pango_layout_get_extents(layout, NULL, &rect);
 
     if (x) (*x) = (wxCoord) PANGO_PIXELS(rect.width);
     if (y) (*y) = (wxCoord) PANGO_PIXELS(rect.height);