Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
PIM
PIM Sieve Editor
Commits
77f26cad
Commit
77f26cad
authored
Sep 02, 2020
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
const'ify pointer
parent
d6510e74
Pipeline
#32656
passed with stage
in 12 minutes and 7 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
5 deletions
+4
-5
src/importwizard/importimapsettingprogresspage.cpp
src/importwizard/importimapsettingprogresspage.cpp
+0
-1
src/serversievesettings.h
src/serversievesettings.h
+1
-1
src/sieveeditorbookmarks.h
src/sieveeditorbookmarks.h
+2
-2
src/sieveeditorconfigureserverwidget.h
src/sieveeditorconfigureserverwidget.h
+1
-1
No files found.
src/importwizard/importimapsettingprogresspage.cpp
View file @
77f26cad
...
...
@@ -26,7 +26,6 @@
ImportImapSettingProgressPage
::
ImportImapSettingProgressPage
(
QWidget
*
parent
)
:
QWidget
(
parent
)
,
mSettingsFound
(
false
)
{
QVBoxLayout
*
mainLayout
=
new
QVBoxLayout
(
this
);
mainLayout
->
setObjectName
(
QStringLiteral
(
"mainlayout"
));
...
...
src/serversievesettings.h
View file @
77f26cad
...
...
@@ -81,7 +81,7 @@ private:
void
populateDefaultAuthenticationOptions
(
QComboBox
*
combobox
);
void
slotSafetyChanged
();
void
populateDefaultComboBoxAuthenticationOptions
();
Ui
::
ServerSieveSettings
*
ui
=
nullptr
;
Ui
::
ServerSieveSettings
*
const
ui
;
MailTransport
::
ServerTest
*
mServerTest
=
nullptr
;
};
...
...
src/sieveeditorbookmarks.h
View file @
77f26cad
...
...
@@ -46,8 +46,8 @@ Q_SIGNALS:
private:
Q_DISABLE_COPY
(
SieveEditorBookmarks
)
KBookmarkMenu
*
mBookmarkMenu
=
nullptr
;
QMenu
*
mMenu
=
nullptr
;
SieveEditorMainWindow
*
mMainWindow
=
nullptr
;
QMenu
*
const
mMenu
;
SieveEditorMainWindow
*
const
mMainWindow
;
};
#endif // SIEVEEDITORBOOKMARKS_H
src/sieveeditorconfigureserverwidget.h
View file @
77f26cad
...
...
@@ -44,7 +44,7 @@ private:
void
slotItemSelectionChanged
();
private:
Ui
::
SieveEditorConfigureServerWidget
*
ui
=
nullptr
;
Ui
::
SieveEditorConfigureServerWidget
*
const
ui
;
};
#endif // SIEVEEDITORCONFIGURESERVERWIDGET_H
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