|
|
|
@ -63,11 +63,11 @@ ColumnList::ColumnList( TQWidget *parent, const char *name )
|
|
|
|
|
|
|
|
|
|
TQVBox *buttonbox = new TQVBox( this );
|
|
|
|
|
|
|
|
|
|
m_up = new KPushButton( KGuiItem( TQString(), "up" ), buttonbox );
|
|
|
|
|
m_up = new KPushButton( KGuiItem( TQString(), "go-up" ), buttonbox );
|
|
|
|
|
TQToolTip::add( m_up, i18n( "Move column up" ) );
|
|
|
|
|
connect( m_up, TQT_SIGNAL( clicked() ), this, TQT_SLOT( moveUp() ) );
|
|
|
|
|
|
|
|
|
|
m_down = new KPushButton( KGuiItem( TQString(), "down" ), buttonbox );
|
|
|
|
|
m_down = new KPushButton( KGuiItem( TQString(), "go-down" ), buttonbox );
|
|
|
|
|
TQToolTip::add( m_down, i18n( "Move column down" ) );
|
|
|
|
|
connect( m_down, TQT_SIGNAL( clicked() ), this, TQT_SLOT( moveDown() ) );
|
|
|
|
|
|
|
|
|
|