Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Games
Katomic
Commits
2d7547bd
Commit
2d7547bd
authored
Dec 28, 2021
by
Laurent Montel
😁
Browse files
Migration code will be removed in qt6 + AA_UseHighDpiPixmaps is enabled by default in qt6
parent
4f654f24
Pipeline
#115149
passed with stage
in 57 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main.cpp
View file @
2d7547bd
...
...
@@ -13,7 +13,9 @@
#include <KAboutData>
#include <KCrash>
#include <KMessageBox>
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
#include <Kdelibs4ConfigMigrator>
#endif
#include <KDBusService>
#include <QTimer>
...
...
@@ -28,13 +30,16 @@
int
main
(
int
argc
,
char
**
argv
)
{
// Fixes blurry icons with fractional scaling
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
QGuiApplication
::
setAttribute
(
Qt
::
AA_UseHighDpiPixmaps
);
#endif
QApplication
app
(
argc
,
argv
);
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
Kdelibs4ConfigMigrator
migrate
(
QStringLiteral
(
"katomic"
));
migrate
.
setConfigFiles
(
QStringList
()
<<
QStringLiteral
(
"katomicrc"
));
migrate
.
setUiFiles
(
QStringList
()
<<
QStringLiteral
(
"katomicui.rc"
));
migrate
.
migrate
();
#endif
KLocalizedString
::
setApplicationDomain
(
"katomic"
);
KAboutData
aboutData
(
QStringLiteral
(
"katomic"
),
i18n
(
"KAtomic"
),
QStringLiteral
(
KATOMIC_VERSION_STRING
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment