diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-20 21:19:56 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-21 09:04:21 +0900 |
commit | 1ab02499bb11845caae3b8ea8e7ded216b4c98b1 (patch) | |
tree | ec28062efc733c58494b6d70f571e07791c81a59 /kuser/propdlg.cpp | |
parent | ac7e4fb5ea958e01cbde02244f3a0e2994db02b2 (diff) | |
download | tdeadmin-1ab02499bb11845caae3b8ea8e7ded216b4c98b1.tar.gz tdeadmin-1ab02499bb11845caae3b8ea8e7ded216b4c98b1.zip |
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 60f194231ee9019909e22e2daabb8ad784905305)
Diffstat (limited to 'kuser/propdlg.cpp')
-rw-r--r-- | kuser/propdlg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kuser/propdlg.cpp b/kuser/propdlg.cpp index 3e82282..4ffe281 100644 --- a/kuser/propdlg.cpp +++ b/kuser/propdlg.cpp @@ -117,7 +117,7 @@ void propdlg::initDlg() leid = new KLineEdit(frame); // whatstr = i18n("WHAT IS THIS: User Id"); - leid->setValidator(new TQIntValidator(TQT_TQOBJECT(frame))); + leid->setValidator(new TQIntValidator(frame)); addRow(frame, layout, row++, leid, i18n("&User ID:"), whatstr); connect(leid, TQT_SIGNAL(textChanged(const TQString &)), this, TQT_SLOT(changed())); @@ -270,7 +270,7 @@ void propdlg::initDlg() lerid = new KLineEdit(frame); // whatstr = i18n("WHAT IS THIS: Rid"); - lerid->setValidator(new TQIntValidator(TQT_TQOBJECT(frame))); + lerid->setValidator(new TQIntValidator(frame)); addRow(frame, layout, row++, lerid, i18n("RID:"), whatstr); connect(lerid, TQT_SIGNAL(textChanged(const TQString &)), this, TQT_SLOT(changed())); |