diff options
Diffstat (limited to 'src/borrowerdialog.cpp')
-rw-r--r-- | src/borrowerdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/borrowerdialog.cpp b/src/borrowerdialog.cpp index f25416a..8e47279 100644 --- a/src/borrowerdialog.cpp +++ b/src/borrowerdialog.cpp @@ -28,13 +28,13 @@ using Tellico::BorrowerDialog; BorrowerDialog::Item::Item(KListView* parent_, const KABC::Addressee& add_) : KListViewItem(parent_), m_uid(add_.uid()) { setText(0, add_.realName()); - setPixmap(0, SmallIcon(TQString::tqfromLatin1("kaddressbook"))); + setPixmap(0, SmallIcon(TQString::fromLatin1("kaddressbook"))); } BorrowerDialog::Item::Item(KListView* parent_, const Data::Borrower& bor_) : KListViewItem(parent_), m_uid(bor_.uid()) { setText(0, bor_.name()); - setPixmap(0, SmallIcon(TQString::tqfromLatin1("tellico"))); + setPixmap(0, SmallIcon(TQString::fromLatin1("tellico"))); } // default button is going to be used as a print button, so it's separated |