diff options
author | Timothy Pearson <[email protected]> | 2011-12-16 09:55:43 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-16 09:55:43 -0600 |
commit | b45817ccac7985d286c754b95f40eda5e105efda (patch) | |
tree | 428da987d342b841c1b05adb50cfc12b45b40a14 /src/editbookmarkdialog.cpp | |
parent | 59d9dbf810de71334e1173fa7dda59209c10032c (diff) | |
download | dolphin-b45817ccac7985d286c754b95f40eda5e105efda.tar.gz dolphin-b45817ccac7985d286c754b95f40eda5e105efda.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 59d9dbf810de71334e1173fa7dda59209c10032c.
Diffstat (limited to 'src/editbookmarkdialog.cpp')
-rw-r--r-- | src/editbookmarkdialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/editbookmarkdialog.cpp b/src/editbookmarkdialog.cpp index 0d6f6a1..3a3f5ca 100644 --- a/src/editbookmarkdialog.cpp +++ b/src/editbookmarkdialog.cpp @@ -23,7 +23,7 @@ #include <klocale.h> #include <tqlineedit.h> #include <tqlabel.h> -#include <layout.h> +#include <tqlayout.h> #include <kiconloader.h> #include <tqpushbutton.h> #include <kurl.h> @@ -72,7 +72,7 @@ EditBookmarkDialog::EditBookmarkDialog(const TQString& title, new TQLabel(i18n("Icon:"), grid); m_iconName = icon; m_iconButton = new TQPushButton(SmallIcon(m_iconName), TQString(), grid); - m_iconButton->setSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed); + m_iconButton->tqsetSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed); connect(m_iconButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(selectIcon())); @@ -86,13 +86,13 @@ EditBookmarkDialog::EditBookmarkDialog(const TQString& title, new TQLabel(i18n("Location:"), grid); TQHBox* locationBox = new TQHBox(grid); - locationBox->setSizePolicy(TQSizePolicy::Preferred, TQSizePolicy::Fixed); + locationBox->tqsetSizePolicy(TQSizePolicy::Preferred, TQSizePolicy::Fixed); locationBox->setSpacing(spacingHint()); m_location = new TQLineEdit(url.prettyURL(), locationBox); m_location->setMinimumWidth(320); TQPushButton* selectLocationButton = new TQPushButton(SmallIcon("folder"), TQString(), locationBox); - selectLocationButton->setSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed); + selectLocationButton->tqsetSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed); connect(selectLocationButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(selectLocation())); |