--- a/IconEditor/IconEditorPalette.py Mon Aug 09 08:41:03 2010 +0200 +++ b/IconEditor/IconEditorPalette.py Mon Aug 09 15:36:47 2010 +0200 @@ -64,7 +64,7 @@ """<b>Select Color</b>""" """<p>Select the current drawing color via a color selection dialog.</p>""" )) - self.connect(self.__colorButton, SIGNAL("clicked()"), self.__selectColor) + self.__colorButton.clicked[()].connect(self.__selectColor) self.__layout.addWidget(self.__colorButton) self.__colorAlpha = QSpinBox(self) @@ -122,4 +122,4 @@ if val != self.__currentAlpha: col = QColor(self.__currentColor) col.setAlpha(val) - self.emit(SIGNAL("colorSelected(QColor)"), col) + self.emit(SIGNAL("colorSelected(QColor)"), col) \ No newline at end of file