From: nds Date: Thu, 10 Jan 2008 04:47:42 +0000 (+0000) Subject: Signal activated() was changed on triggered() for class QAction. X-Git-Tag: TG_Saint_Valentine-Day~10 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=fa6e8d720e1aea0687a70ac579111384a6a99d70;p=modules%2Fgui.git Signal activated() was changed on triggered() for class QAction. --- diff --git a/src/TableViewer/TableViewer_ViewWindow.cxx b/src/TableViewer/TableViewer_ViewWindow.cxx index 55c7c4c00..0a94850b6 100755 --- a/src/TableViewer/TableViewer_ViewWindow.cxx +++ b/src/TableViewer/TableViewer_ViewWindow.cxx @@ -307,7 +307,7 @@ void TableViewer_ViewWindow::registerAction( const int id, QtxAction* a ) return; myActionsMap.insert( id, a ); - connect( a, SIGNAL( activated() ), this, SLOT( onActivated() ) ); + connect( a, SIGNAL( triggered() ), this, SLOT( onActivated() ) ); } QtxAction* TableViewer_ViewWindow::createAction( const int id, const QString& menu, const QPixmap& ico,