diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:56 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:56 -0500 |
commit | 14e371192dfef0f2862f0a16e5dcfc8c5db1eeef (patch) | |
tree | 1fd311193b3809383406494aba84883f7e27c31a /atlantik/client | |
parent | 2eda1e5dd5bfee90414504753c0ddf940014c655 (diff) | |
download | tdegames-14e371192dfef0f2862f0a16e5dcfc8c5db1eeef.tar.gz tdegames-14e371192dfef0f2862f0a16e5dcfc8c5db1eeef.zip |
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
Diffstat (limited to 'atlantik/client')
-rw-r--r-- | atlantik/client/eventlogwidget.cpp | 2 | ||||
-rw-r--r-- | atlantik/client/selectgame_widget.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/atlantik/client/eventlogwidget.cpp b/atlantik/client/eventlogwidget.cpp index ea80aadc..eb60fa3c 100644 --- a/atlantik/client/eventlogwidget.cpp +++ b/atlantik/client/eventlogwidget.cpp @@ -72,7 +72,7 @@ EventLogWidget::EventLogWidget(EventLog *eventLog, TQWidget *parent, const char actionBox->addItem(new TQSpacerItem(20, 20, TQSizePolicy::Expanding, TQSizePolicy::Minimum)); - m_saveButton = new KPushButton(BarIcon("filesave", TDEIcon::SizeSmall), i18n("&Save As..."), this); + m_saveButton = new KPushButton(BarIcon("document-save", TDEIcon::SizeSmall), i18n("&Save As..."), this); actionBox->addWidget(m_saveButton); connect(m_saveButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(save())); diff --git a/atlantik/client/selectgame_widget.cpp b/atlantik/client/selectgame_widget.cpp index 34636afa..ba61c3c1 100644 --- a/atlantik/client/selectgame_widget.cpp +++ b/atlantik/client/selectgame_widget.cpp @@ -81,7 +81,7 @@ void SelectGame::addGame(Game *game) if (game->id() == -1) { TQListViewItem *item = new TQListViewItem( m_gameList, i18n("Create a new %1 Game").arg(game->name()), game->description(), TQString(), TQString(), game->type() ); - item->setPixmap(0, TQPixmap(SmallIcon("filenew"))); + item->setPixmap(0, TQPixmap(SmallIcon("document-new"))); } else { |