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
Akregator
Commits
ed51e4d0
Commit
ed51e4d0
authored
Apr 06, 2021
by
Laurent Montel
Browse files
const'ify
parent
e9864d87
Pipeline
#56634
passed with stage
in 14 minutes and 18 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/actions/actionmanagerimpl.cpp
View file @
ed51e4d0
...
...
@@ -87,7 +87,7 @@ public:
}
private:
ActionManagerImpl
*
m_manager
=
nullptr
;
ActionManagerImpl
*
const
m_manager
;
};
class
ActionManagerImpl
::
ActionManagerImplPrivate
...
...
src/mainwindow.cpp
View file @
ed51e4d0
...
...
@@ -50,7 +50,7 @@ MainWindow::MainWindow(QWidget *parent)
toolBar
()
->
show
();
statusBar
()
->
show
();
int
statH
=
fontMetrics
().
height
()
+
2
;
const
int
statH
=
fontMetrics
().
height
()
+
2
;
m_statusLabel
->
setTextFormat
(
Qt
::
RichText
);
m_statusLabel
->
setSizePolicy
(
QSizePolicy
(
QSizePolicy
::
Ignored
,
QSizePolicy
::
Fixed
));
m_statusLabel
->
setMinimumWidth
(
0
);
...
...
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