summaryrefslogtreecommitdiff
authortille <tille>2002-07-22 10:43:11 (UTC)
committer tille <tille>2002-07-22 10:43:11 (UTC)
commit3878c4883ce02dd98122695ffa678c3f54f704bb (patch) (unidiff)
treeed388ed88085aacd2bef4d412a98cec772983589
parent0a22d863b288a0b499cfc249126a342aeda2b628 (diff)
downloadopie-3878c4883ce02dd98122695ffa678c3f54f704bb.zip
opie-3878c4883ce02dd98122695ffa678c3f54f704bb.tar.gz
opie-3878c4883ce02dd98122695ffa678c3f54f704bb.tar.bz2
fixes bug #133 -- added two tr("")
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/settings/security/security.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/settings/security/security.cpp b/core/settings/security/security.cpp
index 6c1931a..2821f4b 100644
--- a/core/settings/security/security.cpp
+++ b/core/settings/security/security.cpp
@@ -197,10 +197,10 @@ void Security::changePassCode()
197 QString new2; 197 QString new2;
198 198
199 do { 199 do {
200 new1 = enterPassCode("Enter new passcode"); 200 new1 = enterPassCode(tr("Enter new passcode"));
201 if ( new1.isNull() ) 201 if ( new1.isNull() )
202 return; 202 return;
203 new2 = enterPassCode("Re-enter new passcode"); 203 new2 = enterPassCode(tr("Re-enter new passcode"));
204 if ( new2.isNull() ) 204 if ( new2.isNull() )
205 return; 205 return;
206 } while (new1 != new2); 206 } while (new1 != new2);