Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/Translator.h')
-rw-r--r--src/core/Translator.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/Translator.h b/src/core/Translator.h
index cfc49d710..8236ade43 100644
--- a/src/core/Translator.h
+++ b/src/core/Translator.h
@@ -18,9 +18,9 @@
#ifndef KEEPASSX_TRANSLATOR_H
#define KEEPASSX_TRANSLATOR_H
+#include <QLocale>
#include <QPair>
#include <QString>
-#include <QLocale>
class Translator
{
@@ -29,8 +29,8 @@ public:
static QList<QPair<QString, QString>> availableLanguages();
private:
- static bool installTranslator(const QLocale& locale, const QString& path);
- static bool installQtTranslator(const QLocale& locale, const QString& path);
+ static bool installTranslator(const QStringList& languages, const QString& path);
+ static bool installQtTranslator(const QStringList& languages, const QString& path);
};
#endif // KEEPASSX_TRANSLATOR_H