summaryrefslogtreecommitdiffstats
path: root/src/borrowerdialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-16 09:57:51 -0600
committerTimothy Pearson <[email protected]>2011-12-16 09:57:51 -0600
commit2781e27b871150395a5a82e221684108641002b2 (patch)
tree57f4d7c01a48faef1a840fbe0de8f4ec1e5f606f /src/borrowerdialog.cpp
parent031454e56009d576589c28757f6c6fcf4884095e (diff)
downloadtellico-2781e27b871150395a5a82e221684108641002b2.tar.gz
tellico-2781e27b871150395a5a82e221684108641002b2.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 031454e56009d576589c28757f6c6fcf4884095e.
Diffstat (limited to 'src/borrowerdialog.cpp')
-rw-r--r--src/borrowerdialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/borrowerdialog.cpp b/src/borrowerdialog.cpp
index 8de9b18..f25416a 100644
--- a/src/borrowerdialog.cpp
+++ b/src/borrowerdialog.cpp
@@ -21,20 +21,20 @@
#include <kabc/stdaddressbook.h>
#include <kiconloader.h>
-#include <layout.h>
+#include <tqlayout.h>
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::fromLatin1("kaddressbook")));
+ setPixmap(0, SmallIcon(TQString::tqfromLatin1("kaddressbook")));
}
BorrowerDialog::Item::Item(KListView* parent_, const Data::Borrower& bor_)
: KListViewItem(parent_), m_uid(bor_.uid()) {
setText(0, bor_.name());
- setPixmap(0, SmallIcon(TQString::fromLatin1("tellico")));
+ setPixmap(0, SmallIcon(TQString::tqfromLatin1("tellico")));
}
// default button is going to be used as a print button, so it's separated