dabo Commit Revision 4535 Date: 2008-09-29 15:42:29 -0700 (Mon, 29 Sep 2008) Author: Johnf Trac: http://svn.dabodev.com/trac/dabo/changeset/4535
Changed: U trunk/dabo/ui/uiwx/__init__.py Log: wrapped wx.lib.platebtn in wx.version test to fix use with older versions of wxpython Diff: Modified: trunk/dabo/ui/uiwx/__init__.py =================================================================== --- trunk/dabo/ui/uiwx/__init__.py 2008-09-28 20:47:36 UTC (rev 4534) +++ trunk/dabo/ui/uiwx/__init__.py 2008-09-29 22:42:29 UTC (rev 4535) @@ -70,7 +70,8 @@ from dBox import dBox from dBitmap import dBitmap from dBitmapButton import dBitmapButton -from dBorderlessButton import dBorderlessButton +if wx.VERSION >= (2, 8, 8): + from dBorderlessButton import dBorderlessButton from dButton import dButton from dCalendar import dCalendar from dCalendar import dExtendedCalendar _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]
