Mon, 09 Aug 2010 15:59:33 +0200
Continued porting signal/slot usage to the new API.
diff -r e6a4bc9e1043 -r 0911d8be9b07 Plugins/PluginAbout.py --- a/Plugins/PluginAbout.py Mon Aug 09 15:59:17 2010 +0200 +++ b/Plugins/PluginAbout.py Mon Aug 09 15:59:33 2010 +0200 @@ -7,7 +7,7 @@ Module implementing the About plugin. """ -from PyQt4.QtCore import QObject, SIGNAL +from PyQt4.QtCore import QObject from PyQt4.QtGui import QMessageBox from UI.Info import * @@ -124,4 +124,4 @@ """ Private slot to handle the About Qt dialog. """ - QMessageBox.aboutQt(self.__ui, Program) \ No newline at end of file + QMessageBox.aboutQt(self.__ui, Program)
diff -r e6a4bc9e1043 -r 0911d8be9b07 Plugins/PluginWizardPyRegExp.py --- a/Plugins/PluginWizardPyRegExp.py Mon Aug 09 15:59:17 2010 +0200 +++ b/Plugins/PluginWizardPyRegExp.py Mon Aug 09 15:59:33 2010 +0200 @@ -7,7 +7,7 @@ Module implementing the Python re wizard plugin. """ -from PyQt4.QtCore import QObject, SIGNAL +from PyQt4.QtCore import QObject from PyQt4.QtGui import QDialog, QMessageBox from E5Gui.E5Application import e5App @@ -126,4 +126,4 @@ # It should be done on this way to allow undo editor.beginUndoAction() editor.insertAt(code, line, index) - editor.endUndoAction() \ No newline at end of file + editor.endUndoAction()
diff -r e6a4bc9e1043 -r 0911d8be9b07 Plugins/PluginWizardQColorDialog.py --- a/Plugins/PluginWizardQColorDialog.py Mon Aug 09 15:59:17 2010 +0200 +++ b/Plugins/PluginWizardQColorDialog.py Mon Aug 09 15:59:33 2010 +0200 @@ -7,7 +7,7 @@ Module implementing the QColorDialog wizard plugin. """ -from PyQt4.QtCore import QObject, SIGNAL +from PyQt4.QtCore import QObject from PyQt4.QtGui import QDialog, QMessageBox from E5Gui.E5Application import e5App @@ -126,4 +126,4 @@ # It should be done on this way to allow undo editor.beginUndoAction() editor.insertAt(code, line, index) - editor.endUndoAction() \ No newline at end of file + editor.endUndoAction()
diff -r e6a4bc9e1043 -r 0911d8be9b07 Plugins/PluginWizardQFileDialog.py --- a/Plugins/PluginWizardQFileDialog.py Mon Aug 09 15:59:17 2010 +0200 +++ b/Plugins/PluginWizardQFileDialog.py Mon Aug 09 15:59:33 2010 +0200 @@ -7,7 +7,7 @@ Module implementing the QFileDialog wizard plugin. """ -from PyQt4.QtCore import QObject, SIGNAL +from PyQt4.QtCore import QObject from PyQt4.QtGui import QDialog, QMessageBox from E5Gui.E5Application import e5App @@ -126,4 +126,4 @@ # It should be done on this way to allow undo editor.beginUndoAction() editor.insertAt(code, line, index) - editor.endUndoAction() \ No newline at end of file + editor.endUndoAction()
diff -r e6a4bc9e1043 -r 0911d8be9b07 Plugins/PluginWizardQFontDialog.py --- a/Plugins/PluginWizardQFontDialog.py Mon Aug 09 15:59:17 2010 +0200 +++ b/Plugins/PluginWizardQFontDialog.py Mon Aug 09 15:59:33 2010 +0200 @@ -7,7 +7,7 @@ Module implementing the QFontDialog wizard plugin. """ -from PyQt4.QtCore import QObject, SIGNAL +from PyQt4.QtCore import QObject from PyQt4.QtGui import QDialog, QMessageBox from E5Gui.E5Application import e5App @@ -126,4 +126,4 @@ # It should be done on this way to allow undo editor.beginUndoAction() editor.insertAt(code, line, index) - editor.endUndoAction() \ No newline at end of file + editor.endUndoAction()
diff -r e6a4bc9e1043 -r 0911d8be9b07 Plugins/PluginWizardQInputDialog.py --- a/Plugins/PluginWizardQInputDialog.py Mon Aug 09 15:59:17 2010 +0200 +++ b/Plugins/PluginWizardQInputDialog.py Mon Aug 09 15:59:33 2010 +0200 @@ -7,7 +7,7 @@ Module implementing the QInputDialog wizard plugin. """ -from PyQt4.QtCore import QObject, SIGNAL +from PyQt4.QtCore import QObject from PyQt4.QtGui import QDialog, QMessageBox from E5Gui.E5Application import e5App @@ -126,4 +126,4 @@ # It should be done on this way to allow undo editor.beginUndoAction() editor.insertAt(code, line, index) - editor.endUndoAction() \ No newline at end of file + editor.endUndoAction()
diff -r e6a4bc9e1043 -r 0911d8be9b07 Plugins/PluginWizardQMessageBox.py --- a/Plugins/PluginWizardQMessageBox.py Mon Aug 09 15:59:17 2010 +0200 +++ b/Plugins/PluginWizardQMessageBox.py Mon Aug 09 15:59:33 2010 +0200 @@ -7,7 +7,7 @@ Module implementing the QMessageBox wizard plugin. """ -from PyQt4.QtCore import QObject, SIGNAL +from PyQt4.QtCore import QObject from PyQt4.QtGui import QDialog, QMessageBox from E5Gui.E5Application import e5App @@ -126,4 +126,4 @@ # It should be done on this way to allow undo editor.beginUndoAction() editor.insertAt(code, line, index) - editor.endUndoAction() \ No newline at end of file + editor.endUndoAction()
diff -r e6a4bc9e1043 -r 0911d8be9b07 Plugins/PluginWizardQRegExp.py --- a/Plugins/PluginWizardQRegExp.py Mon Aug 09 15:59:17 2010 +0200 +++ b/Plugins/PluginWizardQRegExp.py Mon Aug 09 15:59:33 2010 +0200 @@ -7,7 +7,7 @@ Module implementing the QRegExp wizard plugin. """ -from PyQt4.QtCore import QObject, SIGNAL +from PyQt4.QtCore import QObject from PyQt4.QtGui import QDialog, QMessageBox from E5Gui.E5Application import e5App @@ -126,4 +126,4 @@ # It should be done on this way to allow undo editor.beginUndoAction() editor.insertAt(code, line, index) - editor.endUndoAction() \ No newline at end of file + editor.endUndoAction()
diff -r e6a4bc9e1043 -r 0911d8be9b07 Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py --- a/Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py Mon Aug 09 15:59:17 2010 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py Mon Aug 09 15:59:33 2010 +0200 @@ -9,7 +9,6 @@ import os -from PyQt4.QtCore import SIGNAL from PyQt4.QtGui import QMenu from E5Gui.E5Application import e5App @@ -1060,4 +1059,4 @@ """ Protected slot used to serve the project. """ - self.vcs.hgServe(self.project.ppath) \ No newline at end of file + self.vcs.hgServe(self.project.ppath)
diff -r e6a4bc9e1043 -r 0911d8be9b07 Preferences/ConfigurationPages/EditorKeywordsPage.py --- a/Preferences/ConfigurationPages/EditorKeywordsPage.py Mon Aug 09 15:59:17 2010 +0200 +++ b/Preferences/ConfigurationPages/EditorKeywordsPage.py Mon Aug 09 15:59:33 2010 +0200 @@ -8,7 +8,6 @@ """ from PyQt4.QtCore import pyqtSlot -from PyQt4.QtGui import QWidget from .ConfigurationPageBase import ConfigurationPageBase from .Ui_EditorKeywordsPage import Ui_EditorKeywordsPage
diff -r e6a4bc9e1043 -r 0911d8be9b07 eric5.py --- a/eric5.py Mon Aug 09 15:59:17 2010 +0200 +++ b/eric5.py Mon Aug 09 15:59:33 2010 +0200 @@ -18,8 +18,7 @@ import time import logging -from PyQt4.QtCore import QTextCodec, SIGNAL, SLOT, qWarning, \ - QLibraryInfo, QTimer +from PyQt4.QtCore import QTextCodec, qWarning, QLibraryInfo, QTimer from PyQt4.QtGui import QApplication, QErrorMessage # some global variables needed to start the application