diff -r 608a9c14f4c9 -r 1695e7a2db54 Debugger/BreakPointViewer.py --- a/Debugger/BreakPointViewer.py Thu Aug 05 08:39:56 2010 +0200 +++ b/Debugger/BreakPointViewer.py Fri Aug 06 12:39:40 2010 +0200 @@ -43,8 +43,7 @@ self.setWindowTitle(self.trUtf8("Breakpoints")) self.setContextMenuPolicy(Qt.CustomContextMenu) - self.connect(self,SIGNAL('customContextMenuRequested(const QPoint &)'), - self.__showContextMenu) + self.customContextMenuRequested.connect(self.__showContextMenu) self.connect(self,SIGNAL('doubleClicked(const QModelIndex &)'), self.__doubleClicked) @@ -436,4 +435,4 @@ """ Private method to open the configuration dialog. """ - e5App().getObject("UserInterface").showPreferences("debuggerGeneralPage") \ No newline at end of file + e5App().getObject("UserInterface").showPreferences("debuggerGeneralPage")