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
KDE PIM Runtime
Commits
584644ba
Commit
584644ba
authored
Nov 12, 2021
by
Laurent Montel
😁
Browse files
const'ify pointer
parent
4e2022eb
Pipeline
#96597
failed with stage
in 10 minutes and 17 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
resources/pop3/jobs.h
View file @
584644ba
...
...
@@ -56,7 +56,7 @@ protected:
void
startJob
(
const
QString
&
path
);
virtual
void
slotData
(
const
QByteArray
&
data
);
POPSession
*
mPOPSession
=
nullptr
;
POPSession
*
const
mPOPSession
;
};
class
LoginJob
:
public
BaseJob
...
...
resources/pop3/pop3protocol.h
View file @
584644ba
...
...
@@ -128,7 +128,7 @@ private:
Q_REQUIRED_RESULT
Result
loginPASS
();
const
Settings
&
mSettings
;
QSslSocket
*
mSocket
=
nullptr
;
QSslSocket
*
const
mSocket
;
unsigned
short
int
m_iPort
;
QString
m_sServer
,
m_sPass
,
m_sUser
;
bool
m_try_apop
,
m_try_sasl
,
supports_apop
;
...
...
resources/tomboynotes/tomboynotesconfigwidget.h
View file @
584644ba
...
...
@@ -28,7 +28,7 @@ public:
void
saveDialogSize
(
const
QSize
&
size
)
override
;
private:
Ui
::
TomboyNotesAgentConfigWidget
*
ui
=
nullptr
;
Ui
::
TomboyNotesAgentConfigWidget
*
const
ui
;
KConfigDialogManager
*
mManager
=
nullptr
;
};
...
...
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