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/fetcherconfigdialog.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/fetcherconfigdialog.cpp')
| -rw-r--r-- | src/fetcherconfigdialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fetcherconfigdialog.cpp b/src/fetcherconfigdialog.cpp index 9d9b22a..45bf831 100644 --- a/src/fetcherconfigdialog.cpp +++ b/src/fetcherconfigdialog.cpp @@ -21,7 +21,7 @@ #include <kiconloader.h> #include <tqlabel.h> -#include <tqlayout.h> +#include <layout.h> #include <tqhgroupbox.h> #include <tqwidgetstack.h> #include <tqwhatsthis.h> @@ -58,7 +58,7 @@ FetcherConfigDialog::FetcherConfigDialog(const TQString& sourceName_, Fetch::Typ void FetcherConfigDialog::init(Fetch::Type type_) { setMinimumWidth(FETCHER_CONFIG_MIN_WIDTH); - setHelp(TQString::tqfromLatin1("data-sources-options")); + setHelp(TQString::fromLatin1("data-sources-options")); TQWidget* widget = new TQWidget(this); TQBoxLayout* topLayout = new TQHBoxLayout(widget, KDialog::spacingHint()); @@ -66,7 +66,7 @@ void FetcherConfigDialog::init(Fetch::Type type_) { TQBoxLayout* vlay1 = new TQVBoxLayout(topLayout, KDialog::spacingHint()); m_iconLabel = new TQLabel(widget); if(type_ == Fetch::Unknown) { - m_iconLabel->setPixmap(KGlobal::iconLoader()->loadIcon(TQString::tqfromLatin1("network"), KIcon::Panel, 64)); + m_iconLabel->setPixmap(KGlobal::iconLoader()->loadIcon(TQString::fromLatin1("network"), KIcon::Panel, 64)); } else { m_iconLabel->setPixmap(Fetch::Manager::self()->fetcherIcon(type_, KIcon::Panel, 64)); } |
