diff options
author | Michele Calgaro <[email protected]> | 2023-12-20 21:19:56 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-20 21:19:56 +0900 |
commit | 60f194231ee9019909e22e2daabb8ad784905305 (patch) | |
tree | bb97a0634270bab9950a36cd4799b77b402cc258 /kuser/propdlg.cpp | |
parent | 8b2c74585b27f4843ac0a0fd1f9da04389ee740f (diff) | |
download | tdeadmin-60f194231ee9019909e22e2daabb8ad784905305.tar.gz tdeadmin-60f194231ee9019909e22e2daabb8ad784905305.zip |
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
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())); |