Bring up, down, top, and bottom icons into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent a755b2d76a
commit 6fa4944fec

@ -269,9 +269,9 @@ TQString DccTransferPanelItem::getTypeText() const
TQPixmap DccTransferPanelItem::getTypeIcon() const TQPixmap DccTransferPanelItem::getTypeIcon() const
{ {
if ( m_transfer->getType() == DccTransfer::Send ) if ( m_transfer->getType() == DccTransfer::Send )
return TDEGlobal::iconLoader()->loadIcon( "up", TDEIcon::Small ); return TDEGlobal::iconLoader()->loadIcon( "go-up", TDEIcon::Small );
else else
return TDEGlobal::iconLoader()->loadIcon( "down", TDEIcon::Small ); return TDEGlobal::iconLoader()->loadIcon( "go-down", TDEIcon::Small );
} }
TQPixmap DccTransferPanelItem::getStatusIcon() const TQPixmap DccTransferPanelItem::getStatusIcon() const

@ -83,7 +83,7 @@ TQString DccTransferRecv::getTypeText() const
TQPixmap DccTransferRecv::getTypeIcon() const TQPixmap DccTransferRecv::getTypeIcon() const
{ {
return TDEGlobal::iconLoader()->loadIcon( "down", TDEIcon::Small ); return TDEGlobal::iconLoader()->loadIcon( "go-down", TDEIcon::Small );
} }
void DccTransferRecv::cleanUp() void DccTransferRecv::cleanUp()

@ -100,11 +100,11 @@ namespace Konversation
m_removeNicknameBtn = new TQPushButton(i18n("Delete"), nicknameGBox); m_removeNicknameBtn = new TQPushButton(i18n("Delete"), nicknameGBox);
m_removeNicknameBtn->setEnabled(false); m_removeNicknameBtn->setEnabled(false);
m_upNicknameBtn = new TQToolButton(nicknameGBox); m_upNicknameBtn = new TQToolButton(nicknameGBox);
m_upNicknameBtn->setIconSet(SmallIconSet("up")); m_upNicknameBtn->setIconSet(SmallIconSet("go-up"));
m_upNicknameBtn->setAutoRepeat(true); m_upNicknameBtn->setAutoRepeat(true);
m_upNicknameBtn->setEnabled(false); m_upNicknameBtn->setEnabled(false);
m_downNicknameBtn = new TQToolButton(nicknameGBox); m_downNicknameBtn = new TQToolButton(nicknameGBox);
m_downNicknameBtn->setIconSet(SmallIconSet("down")); m_downNicknameBtn->setIconSet(SmallIconSet("go-down"));
m_downNicknameBtn->setAutoRepeat(true); m_downNicknameBtn->setAutoRepeat(true);
m_downNicknameBtn->setEnabled(false); m_downNicknameBtn->setEnabled(false);

@ -47,8 +47,8 @@ SearchBar::SearchBar(TQWidget* parent)
setFocusProxy(m_searchEdit); setFocusProxy(m_searchEdit);
TDEIconLoader* iconLoader = kapp->iconLoader(); TDEIconLoader* iconLoader = kapp->iconLoader();
m_closeButton->setIconSet(iconLoader->loadIconSet("fileclose", TDEIcon::Toolbar, 16)); m_closeButton->setIconSet(iconLoader->loadIconSet("fileclose", TDEIcon::Toolbar, 16));
m_findNextButton->setIconSet(iconLoader->loadIconSet("up", TDEIcon::Toolbar, 16)); m_findNextButton->setIconSet(iconLoader->loadIconSet("go-up", TDEIcon::Toolbar, 16));
m_findPreviousButton->setIconSet(iconLoader->loadIconSet("down", TDEIcon::Toolbar, 16)); m_findPreviousButton->setIconSet(iconLoader->loadIconSet("go-down", TDEIcon::Toolbar, 16));
m_statusPixLabel->hide(); m_statusPixLabel->hide();
m_statusTextLabel->hide(); m_statusTextLabel->hide();

@ -73,8 +73,8 @@ namespace Konversation
TQWhatsThis::add(m_mainWidget->m_serverLBox, i18n("This is a list of IRC Servers in the network. When connecting to the network, Konversation will attempt to connect to the top server first. If this fails, it will attempt the second server. If this fails, it will attempt the third, and so on. At least one server must be specified. Click a server to highlight it.")); TQWhatsThis::add(m_mainWidget->m_serverLBox, i18n("This is a list of IRC Servers in the network. When connecting to the network, Konversation will attempt to connect to the top server first. If this fails, it will attempt the second server. If this fails, it will attempt the third, and so on. At least one server must be specified. Click a server to highlight it."));
m_mainWidget->m_removeServerButton->setIconSet(SmallIconSet("editdelete")); m_mainWidget->m_removeServerButton->setIconSet(SmallIconSet("editdelete"));
m_mainWidget->m_removeServerButton->setTextLabel(i18n("Delete")); m_mainWidget->m_removeServerButton->setTextLabel(i18n("Delete"));
m_mainWidget->m_upServerBtn->setIconSet(SmallIconSet("up")); m_mainWidget->m_upServerBtn->setIconSet(SmallIconSet("go-up"));
m_mainWidget->m_downServerBtn->setIconSet(SmallIconSet("down")); m_mainWidget->m_downServerBtn->setIconSet(SmallIconSet("go-down"));
connect(m_mainWidget->m_addServerButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(addServer())); connect(m_mainWidget->m_addServerButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(addServer()));
connect(m_mainWidget->m_changeServerButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(editServer())); connect(m_mainWidget->m_changeServerButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(editServer()));
@ -86,8 +86,8 @@ namespace Konversation
TQWhatsThis::add(m_mainWidget->m_channelLBox, i18n("Optional. This is a list of the channels that will be automatically joined once Konversation has connected to a server. You may leave this blank if you wish to not automatically join any channels.")); TQWhatsThis::add(m_mainWidget->m_channelLBox, i18n("Optional. This is a list of the channels that will be automatically joined once Konversation has connected to a server. You may leave this blank if you wish to not automatically join any channels."));
m_mainWidget->m_removeChannelButton->setIconSet(SmallIconSet("editdelete")); m_mainWidget->m_removeChannelButton->setIconSet(SmallIconSet("editdelete"));
m_mainWidget->m_removeChannelButton->setTextLabel(i18n("Delete")); m_mainWidget->m_removeChannelButton->setTextLabel(i18n("Delete"));
m_mainWidget->m_upChannelBtn->setIconSet(SmallIconSet("up")); m_mainWidget->m_upChannelBtn->setIconSet(SmallIconSet("go-up"));
m_mainWidget->m_downChannelBtn->setIconSet(SmallIconSet("down")); m_mainWidget->m_downChannelBtn->setIconSet(SmallIconSet("go-down"));
connect(m_mainWidget->m_addChannelButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(addChannel())); connect(m_mainWidget->m_addChannelButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(addChannel()));
connect(m_mainWidget->m_changeChannelButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(editChannel())); connect(m_mainWidget->m_changeChannelButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(editChannel()));

Loading…
Cancel
Save