Commit d99ea6ae9f2d2f5821bf7a2f1598a65a800f44ab

Remove icons from menubar actions

For some reason (Qt regression?) specifying an icon made the text in the
menu show up at the width of the icon, not the text.  So the text was
being truncated to unreadability.
  
5454
5555 QAction* a;
5656 QMenu* m = new QMenu( i18n("Add new"), this );
57 m->setIcon( KIcon( "list-add-amarok" ) );
5857 a = m->addAction( QString( i18n("ConstraintGroup") ) );
5958 connect( a, SIGNAL( triggered( bool ) ), adderMapper, SLOT( map() ) );
6059 adderMapper->setMapping( a, i18n("ConstraintGroup") );
6565 menuBar_Actions->addMenu( m );
6666
6767 a = menuBar_Actions->addAction( i18n("Remove selected") );
68 a->setIcon( KIcon( "list-remove-amarok" ) );
6968 connect( a, SIGNAL( triggered( bool ) ), m_controller, SLOT( removeNode() ) );
7069
7170 menuBar_Actions->addSeparator();
7271
73 a = QWhatsThis::createAction( menuBar_Actions );
74 a->setIcon( KIcon( "help-contextual-amarok" ) );
72 a = QWhatsThis::createAction( this );
73 a->setIcon( QIcon() );
7574 menuBar_Actions->addAction( a );
7675 ui.treeLayout->insertWidget( 0, menuBar_Actions );
7776