Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
7608604c
Commit
7608604c
authored
Jul 26, 2010
by
kh1
Browse files
Remove superfluous class member.
parent
1a820256
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/help/helpplugin.cpp
View file @
7608604c
...
...
@@ -296,9 +296,9 @@ bool HelpPlugin::initialize(const QStringList &arguments, QString *error)
Aggregation
::
Aggregate
*
agg
=
new
Aggregation
::
Aggregate
;
agg
->
add
(
m_centralWidget
);
agg
->
add
(
new
HelpFindSupport
(
m_centralWidget
));
m_
mainWidget
=
new
QWidget
;
m_splitter
->
addWidget
(
m_
mainWidget
);
QVBoxLayout
*
mainWidgetLayout
=
new
QVBoxLayout
(
m_
mainWidget
);
QWidget
*
mainWidget
=
new
QWidget
;
m_splitter
->
addWidget
(
mainWidget
);
QVBoxLayout
*
mainWidgetLayout
=
new
QVBoxLayout
(
mainWidget
);
mainWidgetLayout
->
setMargin
(
0
);
mainWidgetLayout
->
setSpacing
(
0
);
mainWidgetLayout
->
addWidget
(
createToolBar
());
...
...
src/plugins/help/helpplugin.h
View file @
7608604c
...
...
@@ -118,7 +118,6 @@ private:
private:
HelpMode
*
m_mode
;
Core
::
ICore
*
m_core
;
QWidget
*
m_mainWidget
;
CentralWidget
*
m_centralWidget
;
HelpViewer
*
m_helpViewerForSideBar
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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