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
PIM Messagelib
Commits
610c33ee
Commit
610c33ee
authored
Jun 09, 2021
by
Laurent Montel
😁
Browse files
Add debug operator here
parent
7f2fc6d2
Pipeline
#64871
canceled with stage
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
messagelist/src/core/filter.cpp
View file @
610c33ee
...
...
@@ -281,3 +281,12 @@ QString Filter::identifier() const
{
return
mIdentifier
;
}
QDebug
operator
<<
(
QDebug
d
,
const
MessageList
::
Core
::
Filter
&
t
)
{
d
<<
"filtername "
<<
t
.
filterName
();
d
<<
"identifier "
<<
t
.
identifier
();
d
<<
"search string "
<<
t
.
searchString
();
d
<<
"search option "
<<
t
.
currentOptions
();
return
d
;
}
messagelist/src/core/filter.h
View file @
610c33ee
...
...
@@ -8,10 +8,12 @@
#pragma once
#include <QDebug>
#include <QObject>
#include <QSet>
#include <QString>
#include "messagelist_export.h"
#include "widgets/quicksearchline.h"
#include <Akonadi/KMime/MessageStatus>
#include <Collection>
...
...
@@ -119,3 +121,4 @@ private:
}
// namespace Core
}
// namespace MessageList
MESSAGELIST_EXPORT
QDebug
operator
<<
(
QDebug
d
,
const
MessageList
::
Core
::
Filter
&
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