diff options
Diffstat (limited to 'src/password.cpp')
-rw-r--r-- | src/password.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/password.cpp b/src/password.cpp index 28862e0..b2f8abe 100644 --- a/src/password.cpp +++ b/src/password.cpp @@ -36,9 +36,9 @@ PasswordDlg::PasswordDlg(TQWidget *parent, const char *name) :KDialogBase(Plain, i18n("Password Protection"), Ok|Cancel, Ok, parent, name, /*modal=*/true, /*separator=*/true), w(0) { - TQHBoxLayout* toptqlayout = new TQHBoxLayout(plainPage(), 0, 0); + TQHBoxLayout* toplayout = new TQHBoxLayout(plainPage(), 0, 0); w = new Password(plainPage()); - toptqlayout->addWidget(w, 1); + toplayout->addWidget(w, 1); } PasswordDlg::~PasswordDlg() |