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
KAddressBook
Commits
05df43c7
Commit
05df43c7
authored
Aug 27, 2021
by
Laurent Montel
😁
Browse files
Use directly std::chrono_literals
parent
dad5d1af
Pipeline
#76755
passed with stage
in 5 minutes and 36 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/categoryselectwidget.cpp
View file @
05df43c7
...
...
@@ -16,7 +16,8 @@
#include
<QToolButton>
#include
<Libkdepim/KCheckComboBox>
#include
<chrono>
using
namespace
std
::
chrono_literals
;
using
namespace
Akonadi
;
static
const
int
FILTER_ROLE
=
Qt
::
UserRole
+
1
;
...
...
@@ -84,7 +85,7 @@ void CategorySelectWidgetPrivate::init()
updateTimer
=
new
QTimer
(
this
);
updateTimer
->
setSingleShot
(
true
);
updateTimer
->
setInterval
(
200
);
updateTimer
->
setInterval
(
200
ms
);
connect
(
updateTimer
,
&
QTimer
::
timeout
,
this
,
&
CategorySelectWidgetPrivate
::
slotCheckedItemsTimer
);
auto
but
=
new
QToolButton
(
q
);
...
...
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