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
PIM
Akonadi Mime
Commits
5cec555a
Commit
5cec555a
authored
Jun 09, 2021
by
Laurent Montel
😁
Browse files
Add debug output
parent
3a75f11b
Pipeline
#64873
passed with stage
in 6 minutes and 55 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
5cec555a
cmake_minimum_required
(
VERSION 3.16 FATAL_ERROR
)
set
(
PIM_VERSION
"5.17.4
0
"
)
set
(
PIM_VERSION
"5.17.4
1
"
)
project
(
Akonadi-Mime VERSION
${
PIM_VERSION
}
)
# ECM setup
...
...
src/messagestatus.cpp
View file @
5cec555a
...
...
@@ -787,3 +787,9 @@ const Akonadi::MessageStatus Akonadi::MessageStatus::statusHasError()
st
.
setHasError
();
return
st
;
}
QDebug
operator
<<
(
QDebug
d
,
const
Akonadi
::
MessageStatus
&
t
)
{
d
<<
"status "
<<
t
.
statusStr
();
return
d
;
}
src/messagestatus.h
View file @
5cec555a
...
...
@@ -8,9 +8,9 @@
*/
#pragma once
#include <QSet>
#include "akonadi-mime_export.h"
#include <QDebug>
#include <QSet>
class
QString
;
...
...
@@ -415,3 +415,4 @@ private:
};
}
// namespace Akonadi
AKONADI_MIME_EXPORT
QDebug
operator
<<
(
QDebug
d
,
const
Akonadi
::
MessageStatus
&
t
);
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