| 935 | } |
| 936 | |
| 937 | QString WizDatabase::getPassword() |
| 938 | { |
| 939 | CString strPassword; |
| 940 | getPassword(strPassword); |
| 941 | |
| 942 | if (!strPassword.isEmpty()) { |
| 943 | strPassword = ::WizDecryptPassword(strPassword); |
| 944 | } |
| 945 | |
| 946 | return strPassword; |
| 947 | } |
| 948 | |
| 949 | qint64 WizDatabase::getObjectVersion(const QString& strObjectName) |
| 950 | { |
no test coverage detected