]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Appends statusTip for child tool button. Fix for bug HDFE19688.
authornds <nds@opencascade.com>
Wed, 7 May 2008 12:23:56 +0000 (12:23 +0000)
committernds <nds@opencascade.com>
Wed, 7 May 2008 12:23:56 +0000 (12:23 +0000)
src/Qtx/QtxListAction.cxx

index 813d052ee4ba26c5a2f8ecb927b259c7ff594556..efa47e76504cce8dfb368acc9f004fd84b573754 100755 (executable)
@@ -626,6 +626,7 @@ QtxListAction::QtxListAction( const QString& text, const QString& menuText,
   setText( menuText );
   setShortcut( accel );
   setToolTip( text );
+  setStatusTip( text );
 
   initialize();
 }
@@ -647,6 +648,7 @@ QtxListAction::QtxListAction( const QString& text, const QIcon& icon,
   setText( menuText );
   setShortcut( accel );
   setToolTip( text );
+  setStatusTip( text );
 
   initialize();
 }
@@ -814,6 +816,7 @@ QWidget* QtxListAction::createWidget( QWidget* parent )
   tb->setMenu( myFrame );
   tb->setEnabled( isEnabled() && !names().isEmpty() );
   tb->setToolTip( toolTip() );
+  tb->setStatusTip( statusTip() );
   connect( tb, SIGNAL( clicked( bool ) ), this, SLOT( onSingle( bool ) ) );
 
   return tb;
@@ -877,6 +880,7 @@ void QtxListAction::onChanged()
       tb->setText( text() );
       tb->setIcon( icon() );
       tb->setToolTip( toolTip() );
+      tb->setStatusTip( statusTip() );
     }
   }
 }