]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/wx/lib/floatbar.py
added test cases for wxTextInputStream and UTF-xx encoded text (based on patch 1611286)
[wxWidgets.git] / wxPython / wx / lib / floatbar.py
index 8443ebe7bf2a9f4641944e53426a62a234b75d2a..2fef791b89aa00ed347e84ad4ea29e68e69b5d35 100644 (file)
 #
 # o Added deprecation warning.
 #
 #
 # o Added deprecation warning.
 #
+# 12/18/2003 - Jeff Grimmett (grimmtooth@softhome.net)
+#
+# o wxFloatBar -> FloatBar
+#
 
 """
 NOTE: This module is *not* supported in any way.  Use it however you
 
 """
 NOTE: This module is *not* supported in any way.  Use it however you
@@ -42,7 +46,7 @@ if wx.Platform == '__WXGTK__':
     #
     # For wxGTK all we have to do is set the wxTB_DOCKABLE flag
     #
     #
     # For wxGTK all we have to do is set the wxTB_DOCKABLE flag
     #
-    class wxFloatBar(wx.ToolBar):
+    class FloatBar(wx.ToolBar):
         def __init__(self, parent, ID,
                      pos = wx.DefaultPosition,
                      size = wx.DefaultSize,
         def __init__(self, parent, ID,
                      pos = wx.DefaultPosition,
                      size = wx.DefaultSize,
@@ -68,7 +72,7 @@ if wx.Platform == '__WXGTK__':
 else:
     _DOCKTHRESHOLD = 25
 
 else:
     _DOCKTHRESHOLD = 25
 
-    class wxFloatBar(wx.ToolBar):
+    class FloatBar(wx.ToolBar):
         """
         wxToolBar subclass which can be dragged off its frame and later
         replaced there.  Drag on the toolbar to release it, close it like
         """
         wxToolBar subclass which can be dragged off its frame and later
         replaced there.  Drag on the toolbar to release it, close it like