From e3273691fbb81dbce20d54a848dd1c424a8617d1 Mon Sep 17 00:00:00 2001 From: Nerixyz Date: Mon, 21 Aug 2023 18:02:25 +0200 Subject: [PATCH] fix: lets be inconsistent --- src/util/XDGDesktopFile.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/util/XDGDesktopFile.cpp b/src/util/XDGDesktopFile.cpp index 886a921dc45..9087481609f 100644 --- a/src/util/XDGDesktopFile.cpp +++ b/src/util/XDGDesktopFile.cpp @@ -7,10 +7,10 @@ #include -#if defined(Q_OS_UNIX) and !defined(Q_OS_DARWIN) - namespace chatterino { +#if defined(Q_OS_UNIX) and !defined(Q_OS_DARWIN) + XDGDesktopFile::XDGDesktopFile(const QString &filename) { QFile file(filename); @@ -113,6 +113,6 @@ std::optional XDGDesktopFile::findDesktopFile( return {}; } -} // namespace chatterino - #endif + +} // namespace chatterino