diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 11:53:32 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 20:54:59 +0900 |
| commit | 48f3d5f4d811e899ed05c12dbd61b43244e045aa (patch) | |
| tree | b8d3a57932c4b736ad1203d5566535ccf03eb388 /src/settings.cpp | |
| parent | 123ea9fbbf9d2cdbfd7169cd3d08bfb99ddc25cf (diff) | |
| download | basket-48f3d5f4.tar.gz basket-48f3d5f4.zip | |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit ac30f16b60532c3d1ff474177bb36a073d51ceb4)
Diffstat (limited to 'src/settings.cpp')
| -rw-r--r-- | src/settings.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/settings.cpp b/src/settings.cpp index eada64f..4327847 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -405,7 +405,7 @@ GeneralPage::GeneralPage(TQWidget * parent, const char * name) layout->addLayout(hLay); // System Tray Icon: - TQGroupBox *gbSys = new TQGroupBox(3, Qt::Vertical, i18n("System Tray Icon"), this); + TQGroupBox *gbSys = new TQGroupBox(3, TQt::Vertical, i18n("System Tray Icon"), this); layout->addWidget(gbSys); TQVBoxLayout *sysLay = new TQVBoxLayout(KDialogBase::spacingHint()); @@ -511,7 +511,7 @@ BasketsPage::BasketsPage(TQWidget * parent, const char * name) // Appearance: - TQGroupBox *appearanceBox = new TQGroupBox(3, Qt::Vertical, i18n("Appearance"), this); + TQGroupBox *appearanceBox = new TQGroupBox(3, TQt::Vertical, i18n("Appearance"), this); layout->addWidget(appearanceBox); m_playAnimations = new TQCheckBox(i18n("Ani&mate changes in baskets"), appearanceBox); @@ -525,7 +525,7 @@ BasketsPage::BasketsPage(TQWidget * parent, const char * name) // Behavior: - TQGroupBox *behaviorBox = new TQGroupBox(5, Qt::Vertical, i18n("Behavior"), this); + TQGroupBox *behaviorBox = new TQGroupBox(5, TQt::Vertical, i18n("Behavior"), this); layout->addWidget(behaviorBox); m_autoBullet = new TQCheckBox(i18n("&Transform lines starting with * or - to lists in text editors"), behaviorBox); @@ -596,7 +596,7 @@ BasketsPage::BasketsPage(TQWidget * parent, const char * name) // Protection: - TQGroupBox *protectionBox = new TQGroupBox(3, Qt::Vertical, i18n("Password Protection"), this); + TQGroupBox *protectionBox = new TQGroupBox(3, TQt::Vertical, i18n("Password Protection"), this); layout->addWidget(protectionBox); widget = new TQWidget(protectionBox); |
