diff options
author | Timothy Pearson <[email protected]> | 2011-12-16 09:59:34 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-16 09:59:34 -0600 |
commit | 83677e35509b4dafac63b76995652bdf3b49f209 (patch) | |
tree | 591f1dc22278addb439726c42896376b17bb42bd /kppp/modems.cpp | |
parent | 808e453c56036211f57482ed847d54aca01bba68 (diff) | |
download | tdenetwork-83677e35509b4dafac63b76995652bdf3b49f209.tar.gz tdenetwork-83677e35509b4dafac63b76995652bdf3b49f209.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 808e453c56036211f57482ed847d54aca01bba68.
Diffstat (limited to 'kppp/modems.cpp')
-rw-r--r-- | kppp/modems.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kppp/modems.cpp b/kppp/modems.cpp index ea4a461e..55f8f629 100644 --- a/kppp/modems.cpp +++ b/kppp/modems.cpp @@ -27,7 +27,7 @@ #include <tqdir.h> #include <stdlib.h> -#include <layout.h> +#include <tqlayout.h> #include <tqtabdialog.h> #include <tqwhatsthis.h> #include <tqmessagebox.h> @@ -74,7 +74,7 @@ ModemsWidget::ModemsWidget( TQWidget *parent, const char *name ) connect(edit_b, TQT_SIGNAL(clicked()), TQT_SLOT(editmodem())); TQWhatsThis::add(edit_b, i18n("Allows you to modify the selected account")); - min = edit_b->sizeHint().width(); + min = edit_b->tqsizeHint().width(); min = TQMAX(70,min); edit_b->setMinimumWidth(min); @@ -190,7 +190,7 @@ void ModemsWidget::copymodem() { void ModemsWidget::deletemodem() { TQString s = i18n("Are you sure you want to delete\nthe modem \"%1\"?") - .arg(modemlist_l->text(modemlist_l->currentItem())); + .tqarg(modemlist_l->text(modemlist_l->currentItem())); if(KMessageBox::warningContinueCancel(this, s, i18n("Confirm"), KStdGuiItem::del()) != KMessageBox::Continue) return; |