author | llornkcor <llornkcor> | 2004-07-10 01:59:00 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2004-07-10 01:59:00 (UTC) |
commit | 9a51654b784192af0b02536e308f62bf5a5ae57c (patch) (side-by-side diff) | |
tree | 16ec1ec15173f76d1c0134d63b03aafb89e484a8 /noncore | |
parent | 9c40b0465fc9d553077f020bed889bb1ac1a472f (diff) | |
download | opie-9a51654b784192af0b02536e308f62bf5a5ae57c.zip opie-9a51654b784192af0b02536e308f62bf5a5ae57c.tar.gz opie-9a51654b784192af0b02536e308f62bf5a5ae57c.tar.bz2 |
spelling
-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 824b841..0864293 100644 --- a/noncore/apps/zsafe/zsafe.cpp +++ b/noncore/apps/zsafe/zsafe.cpp @@ -1884,97 +1884,97 @@ void ZSafe::resume(int) } } // ask for password and read again openDocument(filename); } } //--------------------------------------------- bool ZSafe::openDocument(const char* _filename, const char* ) { int retval; char* entry[FIELD_SIZE]; // #ifndef WIN32 int validationFlag = conf->readNumEntry(APP_KEY+"valzsafe", 1); // #else // int validationFlag = 1; // #endif int pwdOk = 0; int numberOfTries = 3; for (int i=0; i < numberOfTries; i++) { QFile f(_filename); if (f.exists()) { // ask with a dialog for the password if (m_password.isEmpty()) getDocPassword(tr("Enter Password")); if (m_password.isEmpty() && validationFlag == 0) { #ifndef NO_OPIE owarn << "Wrong password" << oendl; #else qWarning ("Wrong password"); #endif QMessageBox::critical( 0, tr("ZSafe"), tr("Wrong password.\n\nZSafe will now exit.") ); exitZs (1); } retval = loadInit(_filename, m_password); if (retval != PWERR_GOOD) { #ifndef NO_OPIE owarn << "Error loading Document" << oendl; -#lese +#else qWarning ("Error loading Document"); #endif return false; } } else { #ifdef WIN32 this->setCaption("Qt ZSafe"); #else this->setCaption("ZSafe"); #endif filename = ""; return false; } // load the validation entry if (validationFlag == 0) { pwdOk = 1; break; } retval = loadEntry(entry); if (retval == 1 && !strcmp (entry[0], "ZSAFECATEGORY") && !strcmp (entry[1], "name") && !strcmp (entry[2], "username") && !strcmp (entry[3], "password") && !strcmp (entry[4], "comment") ) { for (int count = 0; count < FIELD_SIZE; count++) free(entry[count]); pwdOk = 1; break; } else // for (int count = 0; count < FIELD_SIZE; count++) free(entry[count]); fclose (fd); m_password = ""; if (i < numberOfTries - 1) { switch( QMessageBox::warning( this, tr("ZSafe"), tr("Wrong password.\nEnter again?"), tr("&Yes"), tr("&No."), 0 ) ) |