Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Q
qgv
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gepetto
qgv
Commits
f5b94d4a
Commit
f5b94d4a
authored
8 years ago
by
Martin Zenzes
Browse files
Options
Downloads
Patches
Plain Diff
qgv: fix -Wunused-parameters
Signed-off-by:
Martin Zenzes
<
martin.zenzes@dfki.de
>
parent
6a9861ed
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
QGVCore/QGVEdge.cpp
+1
-1
1 addition, 1 deletion
QGVCore/QGVEdge.cpp
QGVCore/QGVNode.cpp
+1
-1
1 addition, 1 deletion
QGVCore/QGVNode.cpp
QGVCore/QGVSubGraph.cpp
+1
-1
1 addition, 1 deletion
QGVCore/QGVSubGraph.cpp
with
3 additions
and
3 deletions
QGVCore/QGVEdge.cpp
+
1
−
1
View file @
f5b94d4a
...
...
@@ -59,7 +59,7 @@ void QGVEdge::setLabel(const QString &label)
setAttribute
(
"xlabel"
,
label
);
}
void
QGVEdge
::
paint
(
QPainter
*
painter
,
const
QStyleOptionGraphicsItem
*
option
,
QWidget
*
widget
)
void
QGVEdge
::
paint
(
QPainter
*
painter
,
const
QStyleOptionGraphicsItem
*
,
QWidget
*
)
{
painter
->
save
();
...
...
This diff is collapsed.
Click to expand it.
QGVCore/QGVNode.cpp
+
1
−
1
View file @
f5b94d4a
...
...
@@ -49,7 +49,7 @@ QRectF QGVNode::boundingRect() const
return
_path
.
boundingRect
();
}
void
QGVNode
::
paint
(
QPainter
*
painter
,
const
QStyleOptionGraphicsItem
*
option
,
QWidget
*
widget
)
void
QGVNode
::
paint
(
QPainter
*
painter
,
const
QStyleOptionGraphicsItem
*
,
QWidget
*
)
{
painter
->
save
();
...
...
This diff is collapsed.
Click to expand it.
QGVCore/QGVSubGraph.cpp
+
1
−
1
View file @
f5b94d4a
...
...
@@ -83,7 +83,7 @@ QRectF QGVSubGraph::boundingRect() const
return
QRectF
(
0
,
0
,
_width
,
_height
);
}
void
QGVSubGraph
::
paint
(
QPainter
*
painter
,
const
QStyleOptionGraphicsItem
*
option
,
QWidget
*
widget
)
void
QGVSubGraph
::
paint
(
QPainter
*
painter
,
const
QStyleOptionGraphicsItem
*
,
QWidget
*
)
{
painter
->
save
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment