Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
Akonadi Calendar
Commits
08611897
Commit
08611897
authored
Feb 20, 2022
by
Laurent Montel
Browse files
Make it compile against qt6
parent
98fc5b26
Pipeline
#140117
passed with stage
in 59 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
serializers/akonadi_serializer_kcalcore.cpp
View file @
08611897
...
...
@@ -19,6 +19,7 @@
#include
"serializer_debug.h"
#include
<QDate>
#include
<QIODevice>
using
namespace
KCalendarCore
;
using
namespace
KCalUtils
;
...
...
src/blockalarmsattribute.cpp
View file @
08611897
...
...
@@ -12,6 +12,7 @@
#include
<Akonadi/AttributeFactory>
#include
<QByteArray>
#include
<QDataStream>
#include
<QIODevice>
using
namespace
Akonadi
;
...
...
src/kcolumnfilterproxymodel_p.h
View file @
08611897
...
...
@@ -9,8 +9,13 @@
#pragma once
#include
<QSortFilterProxyModel>
template
<
class
T
>
class
QVector
;
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
template
<
typename
T
>
class
QVector
;
#else
template
<
typename
T
>
class
QList
;
#endif
namespace
Akonadi
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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