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/detailsviewsettingspage.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/detailsviewsettingspage.cpp')
-rw-r--r-- | src/detailsviewsettingspage.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/detailsviewsettingspage.cpp b/src/detailsviewsettingspage.cpp index f5e2bd7..6aa4855 100644 --- a/src/detailsviewsettingspage.cpp +++ b/src/detailsviewsettingspage.cpp @@ -58,7 +58,7 @@ DetailsViewSettingsPage::DetailsViewSettingsPage(TQWidget *parent) : // create "Columns" properties TQGroupBox* columnsGroup = new TQGroupBox(4, Qt::Vertical, i18n("Columns"), this); - columnsGroup->setSizePolicy(sizePolicy); + columnsGroup->tqsetSizePolicy(sizePolicy); columnsGroup->setMargin(margin); TQHBox* visibleColumnsLayout = new TQHBox(columnsGroup); @@ -76,7 +76,7 @@ DetailsViewSettingsPage::DetailsViewSettingsPage(TQWidget *parent) : // Create "Icon" properties TQButtonGroup* iconSizeGroup = new TQButtonGroup(3, Qt::Horizontal, i18n("Icon Size"), this); - iconSizeGroup->setSizePolicy(sizePolicy); + iconSizeGroup->tqsetSizePolicy(sizePolicy); iconSizeGroup->setMargin(margin); m_smallIconSize = new TQRadioButton(i18n("Small"), iconSizeGroup); m_mediumIconSize = new TQRadioButton(i18n("Medium"), iconSizeGroup); @@ -103,7 +103,7 @@ DetailsViewSettingsPage::DetailsViewSettingsPage(TQWidget *parent) : // create "Text" properties TQGroupBox* textGroup = new TQGroupBox(2, Qt::Horizontal, i18n("Text"), this); - textGroup->setSizePolicy(sizePolicy); + textGroup->tqsetSizePolicy(sizePolicy); textGroup->setMargin(margin); new TQLabel(i18n("Font family:"), textGroup); @@ -115,7 +115,7 @@ DetailsViewSettingsPage::DetailsViewSettingsPage(TQWidget *parent) : m_fontSizeBox->setValue(settings->fontSize()); // Add a dummy widget with no restriction regarding - // a vertical resizing. This assures that the dialog layout + // a vertical resizing. This assures that the dialog tqlayout // is not stretched vertically. new TQWidget(this); } |