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
OpenFlipper-Free
Plugin-PropertyVis
Commits
dc1cd333
Commit
dc1cd333
authored
Apr 11, 2017
by
Martin Heistermann
Browse files
Refactor to work around cppcheck false positive.
Still cleaner than adding a linter exception.
parent
0b4f9600
Changes
3
Hide whitespace changes
Inline
Side-by-side
ScriptObjects/ScriptSettingsBoolean.cc
View file @
dc1cd333
...
...
@@ -14,7 +14,8 @@ ScriptSettingsBoolean::ScriptSettingsBoolean(BooleanWidget *widget)
{}
ScriptSettingsBoolean
::
ScriptSettingsBoolean
(
const
ScriptSettingsBoolean
&
other
)
:
ScriptSettingsBoolean
(
other
.
widget_
)
:
ScriptSettings
(
other
.
widget_
),
widget_
(
other
.
widget_
)
{}
ScriptSettingsBoolean
::~
ScriptSettingsBoolean
()
{}
...
...
ScriptObjects/ScriptSettingsDouble.cc
View file @
dc1cd333
...
...
@@ -16,7 +16,8 @@ ScriptSettingsDouble::ScriptSettingsDouble(
ScriptSettingsDouble
::
ScriptSettingsDouble
(
const
ScriptSettingsDouble
&
other
)
:
ScriptSettingsDouble
(
other
.
widget_
)
:
ScriptSettings
(
other
.
widget_
),
widget_
(
other
.
widget_
)
{}
ScriptSettingsDouble
::~
ScriptSettingsDouble
()
...
...
ScriptObjects/ScriptSettingsVector.cc
View file @
dc1cd333
...
...
@@ -16,7 +16,8 @@ ScriptSettingsVector::ScriptSettingsVector(
ScriptSettingsVector
::
ScriptSettingsVector
(
const
ScriptSettingsVector
&
other
)
:
ScriptSettingsVector
(
other
.
widget_
)
:
ScriptSettings
(
other
.
widget_
),
widget_
(
other
.
widget_
)
{}
ScriptSettingsVector
::~
ScriptSettingsVector
()
...
...
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