]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/tools/img2xpm.py
some wxUniv docs
[wxWidgets.git] / wxPython / tools / img2xpm.py
index 0f3874524ec8b0653a3087372898d1a90fd5c42f..692156d35d9727165f85de794808e8d57bbbb027 100644 (file)
@@ -8,7 +8,7 @@ Usage:
 
 Options:
 
-    -o <dir>       The directory to place the .xmp file(s), defaults to
+    -o <dir>       The directory to place the .xpm file(s), defaults to
                    the current directory.
 
     -m <#rrggbb>   If the original image has a mask or transparency defined
@@ -25,9 +25,6 @@ Options:
 import sys, os, glob, getopt, string
 from wxPython.wx import *
 
-if wxPlatform == "__WXGTK__":
-    raise SystemExit, "This tool can not be used on wxGTK until wxGTK can save XPM files."
-
 wxInitAllImageHandlers()
 
 
@@ -99,9 +96,6 @@ def main(args):
 
 
 if __name__ == "__main__":
-    if wxPlatform == "__WXGTK__":
-        app = wxPySimpleApp()     # Blech!  the GUI needs initialized before
-                                  # bitmaps can be created...
     main(sys.argv[1:])