summaryrefslogtreecommitdiffstats
path: root/kopete
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:16:08 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:16:08 -0500
commitcc0e8357c998d4382e770986cd931e0a3e5a4d9a (patch)
treeea5379e21022eb562c325a382e939a24bca338da /kopete
parente9268c9203df605436c8ba4571d01e1a6c0a56cd (diff)
downloadtdenetwork-cc0e8357c998d4382e770986cd931e0a3e5a4d9a.tar.gz
tdenetwork-cc0e8357c998d4382e770986cd931e0a3e5a4d9a.zip
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'kopete')
-rw-r--r--kopete/kopete/config/accounts/kopeteaccountconfig.cpp4
-rw-r--r--kopete/kopete/config/appearance/tooltipeditdialog.cpp4
-rw-r--r--kopete/protocols/irc/ircprotocol.cpp4
3 files changed, 6 insertions, 6 deletions
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() ) );