mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-04 19:10:09 +01:00
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:
@@ -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.
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#----------------------------------------------------------------------
|
||||
# Name: wxPython.tools.img2img
|
||||
# Name: wx.tools.img2img
|
||||
# Purpose: Common routines for the image converter utilities.
|
||||
#
|
||||
# Author: Robin Dunn
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#----------------------------------------------------------------------
|
||||
# Name: wxPython.tools.img2png
|
||||
# Name: wx.tools.img2png
|
||||
# Purpose: Convert an image to PNG format
|
||||
#
|
||||
# Author: Robin Dunn
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#----------------------------------------------------------------------
|
||||
# Name: wxPython.tools.img2py
|
||||
# Name: wx.tools.img2py
|
||||
# Purpose: Convert an image to Python code.
|
||||
#
|
||||
# Author: Robin Dunn
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#----------------------------------------------------------------------
|
||||
# Name: wxPython.tools.img2xpm
|
||||
# Name: wx.tools.img2xpm
|
||||
# Purpose: Convert an image to XPM format
|
||||
#
|
||||
# Author: Robin Dunn
|
||||
|
||||
Reference in New Issue
Block a user