diff options
author | Michele Calgaro <[email protected]> | 2023-11-05 15:22:45 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-05 21:37:44 +0900 |
commit | fd73938a15f943080d24d458f53e01ccc17dbfd1 (patch) | |
tree | 8eba53899e616bad02bef56d8bf223cd1f0617cd /src/viewpropertiesdialog.cpp | |
parent | 115885964962963b6a6a477c8156e8e3a094d2be (diff) | |
download | dolphin-fd73938a15f943080d24d458f53e01ccc17dbfd1.tar.gz dolphin-fd73938a15f943080d24d458f53e01ccc17dbfd1.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit fda1c3c5d01e1b9093f6d17574face12274c6e3f)
Diffstat (limited to 'src/viewpropertiesdialog.cpp')
-rw-r--r-- | src/viewpropertiesdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/viewpropertiesdialog.cpp b/src/viewpropertiesdialog.cpp index a6ab133..449ad94 100644 --- a/src/viewpropertiesdialog.cpp +++ b/src/viewpropertiesdialog.cpp @@ -55,7 +55,7 @@ ViewPropertiesDialog::ViewPropertiesDialog(DolphinView* dolphinView) : TQVBoxLayout* topLayout = new TQVBoxLayout(plainPage(), 0, spacingHint()); // create 'Properties' group containing view mode, sorting, sort order and show hidden files - TQGroupBox* propsGroup = new TQGroupBox(2, Qt::Horizontal, i18n("Properties"), plainPage()); + TQGroupBox* propsGroup = new TQGroupBox(2, TQt::Horizontal, i18n("Properties"), plainPage()); propsGroup->setSizePolicy(sizePolicy); propsGroup->setMargin(margin); @@ -93,7 +93,7 @@ ViewPropertiesDialog::ViewPropertiesDialog(DolphinView* dolphinView) : // create 'Apply view properties to:' group TQButtonGroup* buttonGroup = new TQButtonGroup(3, - Qt::Vertical, + TQt::Vertical, i18n("Apply view properties to:"), plainPage()); buttonGroup->setSizePolicy(sizePolicy); |