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
libksieve
Commits
ccf618b1
Commit
ccf618b1
authored
Apr 27, 2021
by
Laurent Montel
😁
Browse files
const'ify pointer
parent
191e7fd7
Pipeline
#59950
passed with stage
in 16 minutes and 39 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/ksieveui/editor/webengine/sieveeditorloadprogressindicator.cpp
View file @
ccf618b1
...
...
@@ -12,9 +12,9 @@
using
namespace
KSieveUi
;
SieveEditorLoadProgressIndicator
::
SieveEditorLoadProgressIndicator
(
QObject
*
parent
)
:
QObject
(
parent
)
,
mProgressTimer
(
new
QTimer
(
this
))
{
mProgressPix
=
KIconLoader
::
global
()
->
loadPixmapSequence
(
QStringLiteral
(
"process-working"
),
KIconLoader
::
SizeSmallMedium
);
mProgressTimer
=
new
QTimer
(
this
);
connect
(
mProgressTimer
,
&
QTimer
::
timeout
,
this
,
&
SieveEditorLoadProgressIndicator
::
slotTimerDone
);
}
...
...
src/ksieveui/editor/webengine/sieveeditorloadprogressindicator.h
View file @
ccf618b1
...
...
@@ -29,7 +29,7 @@ private:
void
slotTimerDone
();
int
mProgressCount
=
0
;
KPixmapSequence
mProgressPix
;
QTimer
*
mProgressTimer
=
nullptr
;
QTimer
*
const
mProgressTimer
;
};
}
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