diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-06 11:38:51 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-07 11:19:13 +0900 |
commit | bcee6c3261309f13cf2ca0ad1d9ddc8ee5624d7a (patch) | |
tree | 0c81e36cc908785f3f54b84c01949715558c53e6 /kiten/learn.cpp | |
parent | e25be387c170de2528fc2134604ffab9ac26a931 (diff) | |
download | tdeedu-bcee6c32.tar.gz tdeedu-bcee6c32.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c8e3d1d47df0efdc66fe6b96f8b1c78a2cb18ee6)
Diffstat (limited to 'kiten/learn.cpp')
-rw-r--r-- | kiten/learn.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kiten/learn.cpp b/kiten/learn.cpp index a1b685d4..da378102 100644 --- a/kiten/learn.cpp +++ b/kiten/learn.cpp @@ -74,7 +74,7 @@ Learn::Learn(Dict::Index *parentDict, TQWidget *parent, const char *name) veryTop->addWidget(Tabs); listTop = new TQSplitter(Tabs); - listTop->setOrientation(Qt::Vertical); + listTop->setOrientation(TQt::Vertical); quizTop = new TQWidget(Tabs); Tabs->addTab(listTop, i18n("&List")); Tabs->addTab(quizTop, i18n("&Quiz")); @@ -146,7 +146,7 @@ Learn::Learn(Dict::Index *parentDict, TQWidget *parent, const char *name) hlayout->addStretch(); quizLayout->addStretch(); - answers = new TQButtonGroup(1,Qt::Horizontal, quizTop); + answers = new TQButtonGroup(1,TQt::Horizontal, quizTop); for (int i = 0; i < numberOfAnswers; ++i) answers->insert(new KPushButton(answers), i); quizLayout->addWidget(answers); |