summaryrefslogtreecommitdiffstats
path: root/src/gui/historylistview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/historylistview.cpp')
-rw-r--r--src/gui/historylistview.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/historylistview.cpp b/src/gui/historylistview.cpp
index 575801c..666f3ac 100644
--- a/src/gui/historylistview.cpp
+++ b/src/gui/historylistview.cpp
@@ -41,13 +41,13 @@ HistoryListViewItem::HistoryListViewItem( Q3ListView * parent, const t_call_reco
// Set direction icon
setPixmap(HISTCOL_DIRECTION, (cr.direction == t_call_record::DIR_IN ?
- qPixmapFromMimeSource("1leftarrow-yellow.png") :
- qPixmapFromMimeSource("1rightarrow.png")));
+ QPixmap(":/icons/images/1leftarrow-yellow.png") :
+ QPixmap(":/icons/images/1rightarrow.png")));
// Set status icon
setPixmap(HISTCOL_STATUS, (cr.invite_resp_code < 300 ?
- qPixmapFromMimeSource("ok.png") :
- qPixmapFromMimeSource("cancel.png")));
+ QPixmap(":/icons/images/ok.png") :
+ QPixmap(":/icons/images/cancel.png")));
}
void HistoryListViewItem::paintCell(QPainter *painter, const QColorGroup &cg,