diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:16:08 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:16:08 -0500 |
commit | cc0e8357c998d4382e770986cd931e0a3e5a4d9a (patch) | |
tree | ea5379e21022eb562c325a382e939a24bca338da /kopete/protocols/irc | |
parent | e9268c9203df605436c8ba4571d01e1a6c0a56cd (diff) | |
download | tdenetwork-cc0e8357c998d4382e770986cd931e0a3e5a4d9a.tar.gz tdenetwork-cc0e8357c998d4382e770986cd931e0a3e5a4d9a.zip |
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'kopete/protocols/irc')
-rw-r--r-- | kopete/protocols/irc/ircprotocol.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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() ) ); |