From 818ed6902239b18cc9165a857b093c2a0db10e26 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Mon, 19 Jul 2021 15:40:44 -0400 Subject: [PATCH] app: lowercase dbus name --- src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index a992520..ef9de53 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2,6 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-or-later * SPDX-FileCopyrightText: 2019 Bhushan Shah * SPDX-FileCopyrightText: 2020-2021 Johan Ouwerkerk + * SPDX-FileCopyrightText: 2021 Devin Lin */ #include @@ -63,7 +64,7 @@ Q_DECL_EXPORT int main(int argc, char *argv[]) QCoreApplication::setOrganizationName(QStringLiteral("KDE")); QCoreApplication::setOrganizationDomain(QStringLiteral("kde.org")); - QCoreApplication::setApplicationName(QStringLiteral("Keysmith")); + QCoreApplication::setApplicationName(QStringLiteral("keysmith")); QCoreApplication::setApplicationVersion(KEYSMITH_VERSION_STRING); QGuiApplication::setApplicationDisplayName(i18nc("@title", "Keysmith"));