summaryrefslogtreecommitdiffstats
path: root/kuser/pwddlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kuser/pwddlg.cpp')
-rw-r--r--kuser/pwddlg.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kuser/pwddlg.cpp b/kuser/pwddlg.cpp
index 3c8f9cd..a6f531e 100644
--- a/kuser/pwddlg.cpp
+++ b/kuser/pwddlg.cpp
@@ -18,19 +18,19 @@
* Boston, MA 02110-1301, USA.
**/
-#include <qgrid.h>
+#include <tqgrid.h>
#include <kmessagebox.h>
#include "pwddlg.h"
#include "misc.h"
-pwddlg::pwddlg( QWidget* parent, const char* name )
+pwddlg::pwddlg( TQWidget* parent, const char* name )
: KDialogBase(parent, name, true, i18n("Enter Password"), Ok | Cancel, Ok, true)
{
- QGrid *page = makeGridMainWidget(2, QGrid::Horizontal);
+ TQGrid *page = makeGridMainWidget(2, TQGrid::Horizontal);
- QLabel* lb1 = new QLabel(page, "lb1");
+ TQLabel* lb1 = new TQLabel(page, "lb1");
lb1->setText(i18n("Password:"));
lb1->setMinimumSize(lb1->sizeHint());
lb1->setAlignment(AlignRight|AlignVCenter);
@@ -46,7 +46,7 @@ pwddlg::pwddlg( QWidget* parent, const char* name )
lepw1->setFocus();
lepw1->setEchoMode(KLineEdit::Password);
- QLabel* lb2 = new QLabel(page, "lb2");
+ TQLabel* lb2 = new TQLabel(page, "lb2");
lb2->setText(i18n("Verify:"));
lb2->setMinimumSize(lb2->sizeHint());
lb2->setAlignment(AlignRight|AlignVCenter);
@@ -80,7 +80,7 @@ void pwddlg::slotOk()
}
}
-QString pwddlg::getPassword() const
+TQString pwddlg::getPassword() const
{
return lepw1->text();
}