From cc0e8357c998d4382e770986cd931e0a3e5a4d9a Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 13 Oct 2014 00:16:08 -0500 Subject: Bring up, down, top, and bottom icons into XDG compliance --- kget/dlgdirectoriesbase.ui | 4 ++-- kopete/kopete/config/accounts/kopeteaccountconfig.cpp | 4 ++-- kopete/kopete/config/appearance/tooltipeditdialog.cpp | 4 ++-- kopete/protocols/irc/ircprotocol.cpp | 4 ++-- kppp/edit.cpp | 4 ++-- ksirc/FilterRuleEditor.cpp | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/kget/dlgdirectoriesbase.ui b/kget/dlgdirectoriesbase.ui index 1c86ec64..d173ebed 100644 --- a/kget/dlgdirectoriesbase.ui +++ b/kget/dlgdirectoriesbase.ui @@ -38,7 +38,7 @@ - "down" + "go-down" @@ -69,7 +69,7 @@ - "up" + "go-up" diff --git a/kopete/kopete/config/accounts/kopeteaccountconfig.cpp b/kopete/kopete/config/accounts/kopeteaccountconfig.cpp index 562d319a..d76e2159 100644 --- a/kopete/kopete/config/accounts/kopeteaccountconfig.cpp +++ b/kopete/kopete/config/accounts/kopeteaccountconfig.cpp @@ -60,8 +60,8 @@ KopeteAccountConfig::KopeteAccountConfig( TQWidget *parent, const char * /* name ( new TQVBoxLayout( this ) )->setAutoAdd( true ); m_view = new KopeteAccountConfigBase( this, "KopeteAccountConfig::m_view" ); - m_view->mButtonUp->setIconSet( SmallIconSet( "up" ) ); - m_view->mButtonDown->setIconSet( SmallIconSet( "down" ) ); + m_view->mButtonUp->setIconSet( SmallIconSet( "go-up" ) ); + m_view->mButtonDown->setIconSet( SmallIconSet( "go-down" ) ); connect( m_view->mButtonNew, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotAddAccount() ) ); connect( m_view->mButtonEdit, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotEditAccount() ) ); diff --git a/kopete/kopete/config/appearance/tooltipeditdialog.cpp b/kopete/kopete/config/appearance/tooltipeditdialog.cpp index 89ec4e48..d23fbe74 100644 --- a/kopete/kopete/config/appearance/tooltipeditdialog.cpp +++ b/kopete/kopete/config/appearance/tooltipeditdialog.cpp @@ -97,13 +97,13 @@ TooltipEditDialog::TooltipEditDialog(TQWidget *parent, const char* name) this, TQT_SLOT(slotUsedSelected(TQListViewItem *))); TQIconSet iconSet; - iconSet = SmallIconSet("up"); + iconSet = SmallIconSet("go-up"); mMainWidget->tbUp->setIconSet(iconSet); mMainWidget->tbUp->setEnabled(false); mMainWidget->tbUp->setAutoRepeat(true); connect(mMainWidget->tbUp, TQT_SIGNAL(clicked()), TQT_SLOT(slotUpButton())); - iconSet = SmallIconSet("down"); + iconSet = SmallIconSet("go-down"); mMainWidget->tbDown->setIconSet(iconSet); mMainWidget->tbDown->setEnabled(false); mMainWidget->tbDown->setAutoRepeat(true); diff --git a/kopete/protocols/irc/ircprotocol.cpp b/kopete/protocols/irc/ircprotocol.cpp index 2c35d737..f5723c02 100644 --- a/kopete/protocols/irc/ircprotocol.cpp +++ b/kopete/protocols/irc/ircprotocol.cpp @@ -771,8 +771,8 @@ void IRCProtocol::editNetworks( const TQString &networkName ) { netConf = new NetworkConfig( Kopete::UI::Global::mainWidget(), "network_config", true ); netConf->host->setValidator( new TQRegExpValidator( TQString::fromLatin1("^[\\w-\\.]*$"), TQT_TQOBJECT(netConf) ) ); - netConf->upButton->setIconSet( SmallIconSet( "up" ) ); - netConf->downButton->setIconSet( SmallIconSet( "down" ) ); + netConf->upButton->setIconSet( SmallIconSet( "go-up" ) ); + netConf->downButton->setIconSet( SmallIconSet( "go-down" ) ); connect( netConf->networkList, TQT_SIGNAL( selectionChanged() ), this, TQT_SLOT( slotUpdateNetworkConfig() ) ); connect( netConf->hostList, TQT_SIGNAL( selectionChanged() ), this, TQT_SLOT( slotUpdateNetworkHostConfig() ) ); diff --git a/kppp/edit.cpp b/kppp/edit.cpp index 7d2b6f58..7e7d46c2 100644 --- a/kppp/edit.cpp +++ b/kppp/edit.cpp @@ -81,9 +81,9 @@ DialWidget::DialWidget( TQWidget *parent, bool isnewaccount, const char *name ) del = new TQPushButton(i18n("&Remove"), parent); up = new TQPushButton(parent); - up->setIconSet(BarIconSet("up")); + up->setIconSet(BarIconSet("go-up")); down = new TQPushButton(parent); - down->setIconSet(BarIconSet("down")); + down->setIconSet(BarIconSet("go-down")); lpn1->addWidget(add); lpn1->addWidget(del); lpn1->addStretch(1); diff --git a/ksirc/FilterRuleEditor.cpp b/ksirc/FilterRuleEditor.cpp index 03288515..e234716c 100644 --- a/ksirc/FilterRuleEditor.cpp +++ b/ksirc/FilterRuleEditor.cpp @@ -53,8 +53,8 @@ FilterRuleEditor::FilterRuleEditor filter->RuleList->setHScrollBarMode( TQListBox::AlwaysOff ); filter->RuleList->setMultiSelection( FALSE ); - filter->DownButton->setPixmap( BarIcon( "down", TDEIcon::SizeSmall ) ); - filter->UpButton->setPixmap( BarIcon( "up", TDEIcon::SizeSmall ) ); + filter->DownButton->setPixmap( BarIcon( "go-down", TDEIcon::SizeSmall ) ); + filter->UpButton->setPixmap( BarIcon( "go-up", TDEIcon::SizeSmall ) ); } -- cgit v1.2.1