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
System
KSystemLog
Commits
9e266fab
Commit
9e266fab
authored
Dec 31, 2021
by
Laurent Montel
😁
Browse files
Fix some compile error against qt6
parent
b7a17340
Pipeline
#116399
failed with stage
in 1 minute and 23 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main.cpp
View file @
9e266fab
...
...
@@ -17,9 +17,10 @@
int
main
(
int
argc
,
char
**
argv
)
{
// enable high dpi support
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
QCoreApplication
::
setAttribute
(
Qt
::
AA_UseHighDpiPixmaps
,
true
);
QCoreApplication
::
setAttribute
(
Qt
::
AA_EnableHighDpiScaling
,
true
);
#endif
QApplication
app
(
argc
,
argv
);
KLocalizedString
::
setApplicationDomain
(
"ksystemlog"
);
...
...
src/modes/base/parsingHelper.cpp
View file @
9e266fab
...
...
@@ -8,6 +8,7 @@
#include <KFormat>
#include <KLocalizedString>
#include <QRegExp>
#include "ksystemlog_debug.h"
...
...
src/modes/cups/cupsAccessAnalyzer.h
View file @
9e266fab
...
...
@@ -15,7 +15,7 @@
#include "parsingHelper.h"
#include "cupsAccessLogMode.h"
#include <QRegExp>
class
CupsAccessAnalyzer
:
public
FileAnalyzer
{
Q_OBJECT
...
...
src/modes/cups/cupsPageAnalyzer.h
View file @
9e266fab
...
...
@@ -15,7 +15,7 @@
#include "parsingHelper.h"
#include "cupsPageLogMode.h"
#include <QRegExp>
class
CupsPageAnalyzer
:
public
FileAnalyzer
{
Q_OBJECT
...
...
src/modes/cups/cupsPdfAnalyzer.h
View file @
9e266fab
...
...
@@ -15,7 +15,7 @@
#include "parsingHelper.h"
#include "cupsPdfLogMode.h"
#include <QRegExp>
class
CupsPdfAnalyzer
:
public
FileAnalyzer
{
Q_OBJECT
...
...
Write
Preview
Supports
Markdown
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