]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed typo and increased the size of the cache used by DoGetPartialTextExtents
authorRobin Dunn <robin@alldunn.com>
Fri, 16 Jul 2004 20:31:48 +0000 (20:31 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 16 Jul 2004 20:31:48 +0000 (20:31 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28268 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/dcbase.cpp

index c683ff4f585943387bb7d0cef03cde66fb9989bf..c6842886a148c07a669529c5de985170506d482f 100644 (file)
@@ -371,12 +371,12 @@ void wxDCBase::DoDrawSpline( wxList *points )
 
 
 // Each element of the widths array will be the width of the string up to and
-// including the coresoponding character in text.  This is the generic
+// including the coresponding character in text.  This is the generic
 // implementation, the port-specific classes should do this with native APIs
 // if available and if faster.  Note: pango_layout_index_to_pos is much slower
 // than calling GetTextExtent!!
 
-#define FWC_SIZE 128
+#define FWC_SIZE 256
 
 class FontWidthCache
 {