From e2cd367100cf4be8a2540777f36bd905601e01e2 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 17 Oct 2018 23:25:49 +0900 Subject: Removed obsolete Qt2's TQList/TQListIterator classes and replaced with TQt3's TQPtrList/TQPtrListIterator ones. Signed-off-by: Michele Calgaro --- amor/amordialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amor/amordialog.cpp b/amor/amordialog.cpp index e38e88e..5abb0e3 100644 --- a/amor/amordialog.cpp +++ b/amor/amordialog.cpp @@ -84,7 +84,7 @@ AmorDialog::AmorDialog() checkBox = new TQCheckBox(i18n("Show random tips"), mainwidget); connect(checkBox, TQT_SIGNAL(toggled(bool)), TQT_SLOT(slotRandomTips(bool))); - checkBox->setChecked(mConfig.mTips); // always keep this one after the connect, or the TQList would not be grayed when it should + checkBox->setChecked(mConfig.mTips); // always keep this one after the connect, or the TQPtrList would not be grayed when it should checkBox = new TQCheckBox(i18n("Use a random character"), mainwidget); connect(checkBox, TQT_SIGNAL(toggled(bool)), TQT_SLOT(slotRandomTheme(bool))); -- cgit v1.2.3