Fix some "wxPython" package names --> "wx" in comments, etc.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@75580 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2014-01-10 05:39:16 +00:00
parent e2a6997d39
commit fbda4deb28
6 changed files with 8 additions and 9 deletions

View File

@@ -43,8 +43,8 @@ controlType can be one of::
These constants are also available individually, ie, you can
use either of the following::
from wxPython.wx.lib.masked import Ctrl, COMBO, TEXT, NUMBER, TIME
from wxPython.wx.lib.masked import Ctrl, controlTypes
from wx.lib.masked import Ctrl, COMBO, TEXT, NUMBER, TIME
from wx.lib.masked import Ctrl, controlTypes
If not specified as a keyword argument, the default controlType is
controlTypes.TEXT.

View File

@@ -78,7 +78,7 @@ stream
You can also call the log function implicitly on the Logger
instance, ie. you can type::
from wxPython.tools.dbg import Logger
from wx.tools.dbg import Logger
dbg = Logger()
dbg('something to print')
@@ -162,8 +162,7 @@ class Logger:
output = ' ' * 3 * self._indent + output
if self._wxLog:
from wxPython.wx import wxLogMessage # (if not already imported)
wxLogMessage(output)
wx.LogMessage(output)
else:
self._outstream.write(output + '\n')
self._outstream.flush()

View File

@@ -1,5 +1,5 @@
#----------------------------------------------------------------------
# Name: wxPython.tools.img2img
# Name: wx.tools.img2img
# Purpose: Common routines for the image converter utilities.
#
# Author: Robin Dunn

View File

@@ -1,5 +1,5 @@
#----------------------------------------------------------------------
# Name: wxPython.tools.img2png
# Name: wx.tools.img2png
# Purpose: Convert an image to PNG format
#
# Author: Robin Dunn

View File

@@ -1,5 +1,5 @@
#----------------------------------------------------------------------
# Name: wxPython.tools.img2py
# Name: wx.tools.img2py
# Purpose: Convert an image to Python code.
#
# Author: Robin Dunn

View File

@@ -1,5 +1,5 @@
#----------------------------------------------------------------------
# Name: wxPython.tools.img2xpm
# Name: wx.tools.img2xpm
# Purpose: Convert an image to XPM format
#
# Author: Robin Dunn