summaryrefslogtreecommitdiffstats
path: root/atlantik
diff options
context:
space:
mode:
Diffstat (limited to 'atlantik')
-rw-r--r--atlantik/libatlantikui/auction_widget.cpp2
-rw-r--r--atlantik/libatlantikui/trade_widget.cpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/atlantik/libatlantikui/auction_widget.cpp b/atlantik/libatlantikui/auction_widget.cpp
index 85e3a857..0950b1a0 100644
--- a/atlantik/libatlantikui/auction_widget.cpp
+++ b/atlantik/libatlantikui/auction_widget.cpp
@@ -64,7 +64,7 @@ AuctionWidget::AuctionWidget(AtlanticCore *atlanticCore, Auction *auction, TQWid
if ( (player = *it) && player->game() == pSelf->game() )
{
item = new TDEListViewItem(m_playerList, player->name(), TQString("0"));
- item->setPixmap(0, TQPixmap(SmallIcon("personal")));
+ item->setPixmap(0, TQPixmap(SmallIcon("preferences-desktop-personal")));
m_playerItems[player] = item;
connect(player, TQT_SIGNAL(changed(Player *)), this, TQT_SLOT(playerChanged(Player *)));
diff --git a/atlantik/libatlantikui/trade_widget.cpp b/atlantik/libatlantikui/trade_widget.cpp
index e8c819aa..39ad6c34 100644
--- a/atlantik/libatlantikui/trade_widget.cpp
+++ b/atlantik/libatlantikui/trade_widget.cpp
@@ -180,8 +180,8 @@ void TradeDisplay::tradeItemAdded(TradeItem *tradeItem)
TDEListViewItem *item = new TDEListViewItem(m_componentList, (tradeItem->from() ? tradeItem->from()->name() : TQString("?")), i18n("gives is transitive ;)", "gives"), (tradeItem->to() ? tradeItem->to()->name() : TQString("?")), tradeItem->text());
connect(tradeItem, TQT_SIGNAL(changed(TradeItem *)), this, TQT_SLOT(tradeItemChanged(TradeItem *)));
- item->setPixmap(0, TQPixmap(SmallIcon("personal")));
- item->setPixmap(2, TQPixmap(SmallIcon("personal")));
+ item->setPixmap(0, TQPixmap(SmallIcon("preferences-desktop-personal")));
+ item->setPixmap(2, TQPixmap(SmallIcon("preferences-desktop-personal")));
if (TradeEstate *tradeEstate = dynamic_cast<TradeEstate*>(tradeItem))
item->setPixmap(3, PortfolioEstate::drawPixmap(tradeEstate->estate()));
@@ -205,9 +205,9 @@ void TradeDisplay::tradeItemChanged(TradeItem *t)
if (item)
{
item->setText(0, t->from() ? t->from()->name() : TQString("?"));
- item->setPixmap(0, TQPixmap(SmallIcon("personal")));
+ item->setPixmap(0, TQPixmap(SmallIcon("preferences-desktop-personal")));
item->setText(2, t->to() ? t->to()->name() : TQString("?"));
- item->setPixmap(2, TQPixmap(SmallIcon("personal")));
+ item->setPixmap(2, TQPixmap(SmallIcon("preferences-desktop-personal")));
item->setText(3, t->text());
}
}