]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
*** empty log message ***
authorstv <stv@opencascade.com>
Wed, 21 Feb 2007 09:15:30 +0000 (09:15 +0000)
committerstv <stv@opencascade.com>
Wed, 21 Feb 2007 09:15:30 +0000 (09:15 +0000)
src/Qtx/QtxAction.cxx

index 9a04b8d07f19aaa94a72879ce8d3ab0963063756..9da4b34173e2df7529fe2480c0690f2f44d266c9 100755 (executable)
@@ -35,6 +35,7 @@
 QtxAction::QtxAction( QObject* parent, const char* name, bool toggle )
 : QAction( parent )
 {
+  setObjectName( name );
   setCheckable( toggle );
 
   QApplication::instance()->installEventFilter( this );
@@ -56,6 +57,7 @@ QtxAction::QtxAction( const QString& text, const QIcon& icon,
 {
   setToolTip( text );
   setShortcut( accel );
+  setObjectName( name );
   setCheckable( toggle );
 
   QApplication::instance()->installEventFilter( this );
@@ -75,6 +77,7 @@ QtxAction::QtxAction( const QString& text, const QString& menuText, int accel,
 {
   setToolTip( text );
   setShortcut( accel );
+  setObjectName( name );
   setCheckable( toggle );
 
   QApplication::instance()->installEventFilter( this );