author | llornkcor <llornkcor> | 2004-07-14 08:38:10 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2004-07-14 08:38:10 (UTC) |
commit | b09d76574ca6d2ebafca0640ea36c3b785e7f3a3 (patch) (side-by-side diff) | |
tree | 69989e2de473421b1b773cb703b867b04c9e32bd | |
parent | c70dbfde7f9605be295cdc7f789c7e3e8d823d39 (diff) | |
download | opie-b09d76574ca6d2ebafca0640ea36c3b785e7f3a3.zip opie-b09d76574ca6d2ebafca0640ea36c3b785e7f3a3.tar.gz opie-b09d76574ca6d2ebafca0640ea36c3b785e7f3a3.tar.bz2 |
fix opie build
-rw-r--r-- | noncore/apps/zsafe/zsafe.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/apps/zsafe/zsafe.cpp b/noncore/apps/zsafe/zsafe.cpp index 41c572a..1c15852 100644 --- a/noncore/apps/zsafe/zsafe.cpp +++ b/noncore/apps/zsafe/zsafe.cpp @@ -794,26 +794,26 @@ void ZSafe::editPwd() #ifdef Q_WS_QWS DialogCode result = (DialogCode) QPEApplication::execDialog( dialog ); #endif #ifdef DESKTOP #ifndef Q_QW_QWIN dialog->show(); #endif #else dialog->showMaximized(); #endif - int result = dialog->exec(); #ifdef DESKTOP + int result = dialog->exec(); // result = QDialog::Accepted; #endif if (result == Accepted) { modified = true; // edit the selected item QString name = dialog->NameField->text(); selectedItem->setText (0, tr (name)); QString user = dialog->UsernameField->text(); selectedItem->setText (1, tr (user)); QString pwd = dialog->PasswordField->text(); selectedItem->setText (2, tr (pwd)); |