renamed the dialog class to ConsoleDialog to avoid confusion with

2008-08-14  Sven Neumann  <sven@gimp.org>

	* plug-ins/pygimp/plug-ins/python-console.py: renamed the dialog
	class to ConsoleDialog to avoid confusion with 
pyconsole.Console.


svn path=/trunk/; revision=26544
This commit is contained in:
Sven Neumann 2008-08-14 05:56:58 +00:00 committed by Sven Neumann
parent d87877c257
commit d18f24ea0a
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-08-14 Sven Neumann <sven@gimp.org>
* plug-ins/pygimp/plug-ins/python-console.py: renamed the dialog
class to ConsoleDialog to avoid confusion with pyconsole.Console.
2008-08-13 Sven Neumann <sven@gimp.org>
* plug-ins/pygimp/plug-ins/python-console.py: instead of calling

View File

@ -52,7 +52,7 @@ def do_console():
pyconsole.Console._commit(self)
gimp.displays_flush()
class Console(gimpui.Dialog):
class ConsoleDialog(gimpui.Dialog):
def __init__(self):
gimpui.Dialog.__init__(self, title=_("Python Console"),
role=PROC_NAME, help_id=PROC_NAME,
@ -210,7 +210,7 @@ def do_console():
self.show_all()
gtk.main()
Console().run()
ConsoleDialog().run()
register(
PROC_NAME,