]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/combobox.cpp
Workaround for static controls appearing with a white background
[wxWidgets.git] / src / palmos / combobox.cpp
index d75825c416193fcfe768989627e0c88fc97b385d..b86124b70aca25a84a7abc47174ce9ccce355b8c 100644 (file)
@@ -1,10 +1,10 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        palmos/combobox.cpp
+// Name:        src/palmos/combobox.cpp
 // Purpose:     wxComboBox class
-// Author:      William Osborne
+// Author:      William Osborne - minimal working wxPalmOS port
 // Modified by:
 // Created:     10/13/04
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) William Osborne
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -244,7 +244,7 @@ long wxComboBox::GetInsertionPoint() const
     return 0;
 }
 
-long wxComboBox::GetLastPosition() const
+wxTextPos wxComboBox::GetLastPosition() const
 {
     return 0;
 }
@@ -263,7 +263,7 @@ void wxComboBox::SetSelection(long from, long to)
 
 bool wxComboBox::IsEditable() const
 {
-       return false;
+    return false;
 }
 
 void wxComboBox::Undo()
@@ -280,27 +280,27 @@ void wxComboBox::SelectAll()
 
 bool wxComboBox::CanCopy() const
 {
-       return false;
+    return false;
 }
 
 bool wxComboBox::CanCut() const
 {
-       return false;
+    return false;
 }
 
 bool wxComboBox::CanPaste() const
 {
-       return false;
+    return false;
 }
 
 bool wxComboBox::CanUndo() const
 {
-       return false;
+    return false;
 }
 
 bool wxComboBox::CanRedo() const
 {
-       return false;
+    return false;
 }