]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/PlatWX.cpp
fixes to ShowFullScreen (KDE 3.1)
[wxWidgets.git] / src / stc / PlatWX.cpp
index 8abff4b97dbfccbb0d3c20cbb4ac135c8cd99127..54ba588dd19e910a22f2d20d4a44d595db66d1aa 100644 (file)
@@ -189,6 +189,9 @@ void Font::Create(const char *faceName, int characterSet, int size, bool bold, b
                     false,
                     stc2wx(faceName),
                     encoding);
+#ifdef __WXMAC__
+        ((wxFont*)id)->SetNoAntiAliasing( true ) ;
+#endif
 }
 
 
@@ -804,7 +807,7 @@ void ListBox::Clear() {
 }
 
 void ListBox::Append(char *s) {
-    GETLB(id)->Append(s);
+    GETLB(id)->Append(stc2wx(s));
 }
 
 int ListBox::Length() {
@@ -817,7 +820,7 @@ void ListBox::Select(int n) {
     if (n > 4)
         n = n - 4;
     else
-        n = 1;
+        n = 0;
     GETLB(id)->SetFirstItem(n);
 #endif
 }