]> vaikene.ee Git - evaf/blobdiff - src/apps/PswGen/Generator/module.cpp
Warning fixes and copyright update.
[evaf] / src / apps / PswGen / Generator / module.cpp
index bca195479139b33c2e953b0f9c7a0bc2366f3605..7921337b5fd9fb4366c3269666d56f3ec73b7e57 100644 (file)
@@ -3,7 +3,7 @@
  * @brief Implementation of the iGenerator interface
  * @author Enar Vaikene
  *
- * Copyright (c) 2011-2012 Enar Vaikene
+ * Copyright (c) 2011-2019 Enar Vaikene
  *
  * This file is part of the eVaf C++ cross-platform application development framework.
  *
@@ -51,7 +51,7 @@ Module::~Module()
 
 bool Module::init(QString const & args)
 {
-    Q_UNUSED(args);
+    Q_UNUSED(args)
 
     EVAF_INFO("%s initialized", qPrintable(objectName()));
 
@@ -85,7 +85,7 @@ GeneratorImpl::~GeneratorImpl()
 
 QString GeneratorImpl::generatePassword(QString const & name, QString const & masterPassword, int length, uint flags) const
 {
-    Q_UNUSED(flags);
+    Q_UNUSED(flags)
 
     QByteArray inputString = QString("%1%2").arg(name).arg(masterPassword).toLatin1();
     QCryptographicHash hash(QCryptographicHash::Md5);
@@ -97,7 +97,7 @@ QString GeneratorImpl::generatePassword(QString const & name, QString const & ma
     if (flags & uint(ALPHANUMERIC)) {
         // Convert all characters to alpha-numeric
         for (int i = 0; i < result.size(); ++i) {
-            unsigned char c = result.at(i);
+            char c = result.at(i);
             while (isalnum(c) == 0)
                 c++;
             result[i] = c;