diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:34:15 -0600 | 
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:34:15 -0600 | 
| commit | 031454e56009d576589c28757f6c6fcf4884095e (patch) | |
| tree | ad4c9959d05a814c9090e8fe63ba27057903271b /src/borrowerdialog.cpp | |
| parent | 54011e0e1af8cd96162160ecf5d361a59a2c733e (diff) | |
| download | tellico-031454e56009d576589c28757f6c6fcf4884095e.tar.gz tellico-031454e56009d576589c28757f6c6fcf4884095e.zip | |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/borrowerdialog.cpp')
| -rw-r--r-- | src/borrowerdialog.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/borrowerdialog.cpp b/src/borrowerdialog.cpp index f25416a..8de9b18 100644 --- a/src/borrowerdialog.cpp +++ b/src/borrowerdialog.cpp @@ -21,20 +21,20 @@  #include <kabc/stdaddressbook.h>  #include <kiconloader.h> -#include <tqlayout.h> +#include <layout.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::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 | 
