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
e554ccc9
Commit
e554ccc9
authored
Feb 06, 2017
by
Jan Möbius
Browse files
More cppcheck warnings
parent
9a313dc7
Changes
4
Hide whitespace changes
Inline
Side-by-side
OpenMesh/OMPropertyModel.hh
View file @
e554ccc9
...
...
@@ -73,7 +73,7 @@ class OMPropertyModelSubclass: public SingleObjectPropertyModel
{
Q_OBJECT
public:
OMPropertyModelSubclass
(
QObject
*
parent
=
0
)
explicit
OMPropertyModelSubclass
(
QObject
*
parent
=
0
)
:
SingleObjectPropertyModel
(
parent
)
{
}
...
...
PropertyNameListModel.hh
View file @
e554ccc9
...
...
@@ -139,7 +139,7 @@ class PropertyNameListModel: public QAbstractListModel {
};
public:
PropertyNameListModel
(
QObject
*
parent
=
0
);
explicit
PropertyNameListModel
(
QObject
*
parent
=
0
);
virtual
~
PropertyNameListModel
();
virtual
int
rowCount
(
const
QModelIndex
&
parent
=
QModelIndex
())
const
;
...
...
PropertyVisualizer.hh
View file @
e554ccc9
...
...
@@ -68,7 +68,7 @@
class
VizException
:
public
std
::
logic_error
{
public:
VizException
(
const
std
::
string
&
msg
)
:
std
::
logic_error
(
msg
)
{}
explicit
VizException
(
const
std
::
string
&
msg
)
:
std
::
logic_error
(
msg
)
{}
};
...
...
@@ -94,7 +94,7 @@ public:
*
* @param _propertyInfo Information about the property this visualizer should visualize.
*/
PropertyVisualizer
(
PropertyInfo
_propertyInfo
)
explicit
PropertyVisualizer
(
PropertyInfo
_propertyInfo
)
:
propertyInfo
(
_propertyInfo
),
widget
(
0
)
...
...
Utils.hh
View file @
e554ccc9
...
...
@@ -178,7 +178,7 @@ class NewNameMessageBox: public QMessageBox
Q_OBJECT
public:
NewNameMessageBox
(
QString
propName
);
explicit
NewNameMessageBox
(
QString
propName
);
private
slots
:
void
slotReplace
()
{
replace
=
true
;
}
...
...
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