Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenFlipper-Free
Plugin-VSI
Commits
5bdf2670
Commit
5bdf2670
authored
Feb 06, 2017
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More cppcheck warnings
parent
8faae1cd
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
15 additions
and
15 deletions
+15
-15
config/configValue.hh
config/configValue.hh
+1
-1
config/dynamicValue.hh
config/dynamicValue.hh
+1
-1
parser/context.hh
parser/context.hh
+1
-1
parser/input.hh
parser/input.hh
+2
-2
parser/output.hh
parser/output.hh
+1
-1
scene/button.hh
scene/button.hh
+1
-1
scene/elementArea.hh
scene/elementArea.hh
+1
-1
scene/functionDisplay.hh
scene/functionDisplay.hh
+1
-1
scene/graphicsView.hh
scene/graphicsView.hh
+1
-1
scene/sceneTools.hh
scene/sceneTools.hh
+1
-1
scene/text.hh
scene/text.hh
+1
-1
scene/wayfind.hh
scene/wayfind.hh
+2
-2
types/objectId/TreeModel.hh
types/objectId/TreeModel.hh
+1
-1
No files found.
config/configValue.hh
View file @
5bdf2670
...
...
@@ -77,7 +77,7 @@ class ConfigValue : public QObject {
public:
/// Constructor
ConfigValue
(
ElementInput
*
_input
);
explicit
ConfigValue
(
ElementInput
*
_input
);
/// Destructor
~
ConfigValue
();
...
...
config/dynamicValue.hh
View file @
5bdf2670
...
...
@@ -76,7 +76,7 @@ class DynamicValue : public QObject {
public:
/// Constructor
DynamicValue
(
Input
*
_input
);
explicit
DynamicValue
(
Input
*
_input
);
/// Destructor
~
DynamicValue
();
...
...
parser/context.hh
View file @
5bdf2670
...
...
@@ -77,7 +77,7 @@ class Context {
public:
/// Constructor
Context
(
QScriptEngine
*
_engine
);
explicit
Context
(
QScriptEngine
*
_engine
);
/// Destructor
~
Context
();
...
...
parser/input.hh
View file @
5bdf2670
...
...
@@ -76,7 +76,7 @@ class Input : public InOut {
};
/// Constructor
Input
(
Element
*
_f
);
explicit
Input
(
Element
*
_f
);
/// Current state
unsigned
int
state
();
...
...
parser/output.hh
View file @
5bdf2670
...
...
@@ -68,7 +68,7 @@ class Output : public InOut {
public:
/// Constructor
Output
(
Element
*
_f
);
explicit
Output
(
Element
*
_f
);
friend
class
Context
;
};
...
...
scene/button.hh
View file @
5bdf2670
...
...
@@ -77,7 +77,7 @@ class Button : public Text
public:
/// Constructor
Button
(
QGraphicsItem
*
_parent
=
0
);
explicit
Button
(
QGraphicsItem
*
_parent
=
0
);
Button
(
const
QString
&
_text
,
QGraphicsItem
*
_parent
=
0
);
/// Destructor
...
...
scene/elementArea.hh
View file @
5bdf2670
...
...
@@ -73,7 +73,7 @@ class ElementArea : public QObject, public QGraphicsItem
public:
/// Constructor
ElementArea
(
GraphicsScene
*
_scene
);
explicit
ElementArea
(
GraphicsScene
*
_scene
);
/// Destructor
~
ElementArea
();
...
...
scene/functionDisplay.hh
View file @
5bdf2670
...
...
@@ -75,7 +75,7 @@ class FunctionDisplay : public QGraphicsWidget
public:
/// Constructor
FunctionDisplay
(
GraphicsScene
*
_scene
);
explicit
FunctionDisplay
(
GraphicsScene
*
_scene
);
/// Destructor
~
FunctionDisplay
();
...
...
scene/graphicsView.hh
View file @
5bdf2670
...
...
@@ -70,7 +70,7 @@ class GraphicsView : public QGraphicsView
public:
/// Constructor
GraphicsView
(
QWidget
*
_parent
=
NULL
);
explicit
GraphicsView
(
QWidget
*
_parent
=
NULL
);
signals:
/// Inform the scene about size changes
...
...
scene/sceneTools.hh
View file @
5bdf2670
...
...
@@ -77,7 +77,7 @@ class SceneTools : public QGraphicsWidget
public:
/// Constructor
SceneTools
(
GraphicsScene
*
_scene
);
explicit
SceneTools
(
GraphicsScene
*
_scene
);
/// Destructor
~
SceneTools
();
...
...
scene/text.hh
View file @
5bdf2670
...
...
@@ -78,7 +78,7 @@ class Text : public QObject, public QGraphicsSimpleTextItem, public QGraphicsLay
public:
/// Constructor
Text
(
QGraphicsItem
*
_parent
=
0
);
explicit
Text
(
QGraphicsItem
*
_parent
=
0
);
Text
(
const
QString
&
_text
,
QGraphicsItem
*
_parent
=
0
);
/// Destrucotr
...
...
scene/wayfind.hh
View file @
5bdf2670
...
...
@@ -71,7 +71,7 @@ class WayFind {
public:
/// Constructor
WayFind
(
GraphicsScene
*
_scene
);
explicit
WayFind
(
GraphicsScene
*
_scene
);
/// Destructor
~
WayFind
();
...
...
@@ -91,7 +91,7 @@ class WayFind {
Horizontal
};
Node
(
unsigned
int
_counter
);
explicit
Node
(
unsigned
int
_counter
);
~
Node
();
public:
...
...
types/objectId/TreeModel.hh
View file @
5bdf2670
...
...
@@ -67,7 +67,7 @@ class TreeModel : public QAbstractItemModel
public:
/// Constructor
TreeModel
(
QObject
*
_parent
=
0
);
explicit
TreeModel
(
QObject
*
_parent
=
0
);
/// Destructor
~
TreeModel
();
...
...
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