[utilities/kdebugsettings] src/quickapps: Move "using namespace" to location where declaration has been seen before
Friedrich W. H. Kossebau <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 91b840cf271d693b3f449cd0587ed091a289e4d2 by Friedrich W. H. Kossebau.
Committed on 16/07/2026 at 22:23.
Pushed by kossebau into branch 'master'.
Move "using namespace" to location where declaration has been seen before
M +2 -2 src/quickapps/main.cpp
https://invent.kde.org/utilities/kdebugsettings/-/commit/91b840cf271d693b3f449cd0587ed091a289e4d2
diff --git a/src/quickapps/main.cpp b/src/quickapps/main.cpp
index 4d212ac7..98940310 100644
--- a/src/quickapps/main.cpp
+++ b/src/quickapps/main.cpp
@@ -5,8 +5,6 @@
*/
-using namespace Qt::Literals::StringLiterals;
-
#include <KLocalizedQmlContext>
#include <QApplication>
@@ -40,6 +38,8 @@ using namespace Qt::Literals::StringLiterals;
#include <KStyleManager>
+using namespace Qt::Literals::StringLiterals;
+
int main(int argc, char **argv)
{
KIconTheme::initTheme();