projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Remove some cruft
[wxWidgets.git]
/
wxPython
/
wx
/
tools
/
img2xpm.py
diff --git
a/wxPython/wx/tools/img2xpm.py
b/wxPython/wx/tools/img2xpm.py
index 08c1b9743761a726e68e53e7193429e11e581e99..3fa833b0cea347a894cc146160fcfc15f078796b 100644
(file)
--- a/
wxPython/wx/tools/img2xpm.py
+++ b/
wxPython/wx/tools/img2xpm.py
@@
-8,9
+8,13
@@
# Copyright: (c) 2002 by Total Control Software
# Licence: wxWindows license
#----------------------------------------------------------------------
# Copyright: (c) 2002 by Total Control Software
# Licence: wxWindows license
#----------------------------------------------------------------------
+# 12/21/2003 - Jeff Grimmett (grimmtooth@softhome.net)
+#
+# o V2.5 compatability update
+#
"""
"""
-img2xpm.py -- convert several image formats to XPM
+img2xpm.py -- convert several image formats to XPM
.
Usage:
Usage:
@@
-31,16
+35,17
@@
Options:
the -o option.
"""
the -o option.
"""
+import sys
+
+import wx
-import sys
-import img2img
-from wxPython import wx
+import img2img
def main():
# some bitmap related things need to have a wxApp initialized...
def main():
# some bitmap related things need to have a wxApp initialized...
- if wx.
wx
GetApp() is None:
- app = wx.
wx
PySimpleApp()
- img2img.main(sys.argv[1:], wx.
wx
BITMAP_TYPE_XPM, ".xpm", __doc__)
+ if wx.GetApp() is None:
+ app = wx.PySimpleApp()
+ img2img.main(sys.argv[1:], wx.BITMAP_TYPE_XPM, ".xpm", __doc__)
if __name__ == '__main__':
if __name__ == '__main__':