diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 23:25:49 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 23:25:49 +0900 |
commit | e2cd367100cf4be8a2540777f36bd905601e01e2 (patch) | |
tree | e6db610a9256ad0b0797675ef54a67e32161b59f | |
parent | 4d0656413b438f3863241b1ac3ebf9557141cd65 (diff) | |
download | tdetoys-e2cd367100cf4be8a2540777f36bd905601e01e2.tar.gz tdetoys-e2cd367100cf4be8a2540777f36bd905601e01e2.zip |
Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | amor/amordialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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))); |