From c714eee7b2c872ae2a739d533aebcc25d4f90a7d Mon Sep 17 00:00:00 2001
From: Maximilian Gerhard <maxbox@directbox.com>
Date: Tue, 4 Oct 2011 03:16:13 +0200
Subject: Fixed user pw indicator tooltips

---
 translations/acritoxinstaller_de.ts | 8 +++++++-
 wizard/userpwd.cpp                  | 2 ++
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/translations/acritoxinstaller_de.ts b/translations/acritoxinstaller_de.ts
index 4c3fd49..68538c2 100644
--- a/translations/acritoxinstaller_de.ts
+++ b/translations/acritoxinstaller_de.ts
@@ -724,7 +724,13 @@ p, li { white-space: pre-wrap; }
         <translation>Passwörter müssen mindestens 6 Zeichen lang sein!</translation>
     </message>
     <message>
-        <location filename="../wizard/userpwd.cpp" line="47"/>
+        <location filename="../wizard/userpwd.cpp" line="43"/>
+        <location filename="../wizard/userpwd.cpp" line="53"/>
+        <source>Password OK</source>
+        <translation>Passwort OK</translation>
+    </message>
+    <message>
+        <location filename="../wizard/userpwd.cpp" line="48"/>
         <source>Passwords don&apos;t match!</source>
         <translation>Passwörter stimmen nicht überein!</translation>
     </message>
diff --git a/wizard/userpwd.cpp b/wizard/userpwd.cpp
index 48a9e91..478e59c 100644
--- a/wizard/userpwd.cpp
+++ b/wizard/userpwd.cpp
@@ -40,6 +40,7 @@ void wpUserPwd::updateStatus()
   }
   else
   {
+    passwordStatus->setToolTip(tr("Password OK"));
     passwordStatus->setPixmap(QIcon::fromTheme("dialog-ok").pixmap(24,24));
     
     if(pw1 != pw2)
@@ -49,6 +50,7 @@ void wpUserPwd::updateStatus()
       complete = false;
     }
     else
+      retypePasswordStatus->setToolTip(tr("Password OK"));
       retypePasswordStatus->setPixmap(QIcon::fromTheme("dialog-ok").pixmap(24,24));
   }
   emit completeChanged();
-- 
cgit v1.0