mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-12-30 09:46:30 -05:00
Fixed string literals
This commit is contained in:
parent
d1310b3337
commit
58463bc3dc
@ -95,7 +95,7 @@ Application::Application(int& argc, char** argv)
|
|||||||
if (userName.isEmpty()) {
|
if (userName.isEmpty()) {
|
||||||
userName = qgetenv("USERNAME");
|
userName = qgetenv("USERNAME");
|
||||||
}
|
}
|
||||||
QString identifier = "keepassx2";
|
QString identifier = "keepassxc";
|
||||||
if (!userName.isEmpty()) {
|
if (!userName.isEmpty()) {
|
||||||
identifier.append("-");
|
identifier.append("-");
|
||||||
identifier.append(userName);
|
identifier.append(userName);
|
||||||
|
@ -57,7 +57,7 @@ int main(int argc, char** argv)
|
|||||||
// QStandardPaths::writableLocation(QDesktopServices::DataLocation)
|
// QStandardPaths::writableLocation(QDesktopServices::DataLocation)
|
||||||
|
|
||||||
if (app.isAlreadyRunning()) {
|
if (app.isAlreadyRunning()) {
|
||||||
qWarning() << QCoreApplication::translate("Main", "Another instance of KeePassX 2 is already running.").toUtf8().constData();
|
qWarning() << QCoreApplication::translate("Main", "Another instance of KeePassXC is already running.").toUtf8().constData();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user