Moved tools to be a Python package in wxPython.tools, added scripts to
import and launch each tool. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16418 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
5
wxPython/scripts/img2png
Executable file
5
wxPython/scripts/img2png
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
from wxPython.tools.img2png import main
|
||||
main()
|
||||
|
6
wxPython/scripts/img2py
Executable file
6
wxPython/scripts/img2py
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import sys
|
||||
from wxPython.tools.img2py import main
|
||||
main(sys.argv[1:])
|
||||
|
5
wxPython/scripts/img2xpm
Executable file
5
wxPython/scripts/img2xpm
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
from wxPython.tools.img2xpm import main
|
||||
main()
|
||||
|
4
wxPython/scripts/xrced
Executable file
4
wxPython/scripts/xrced
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
from wxPython.tools.XRCed.xrced import main
|
||||
main()
|
Reference in New Issue
Block a user