Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
9496bae6
Commit
9496bae6
authored
Sep 04, 2009
by
Ludovic Fauvet
Browse files
Fix a comparison that differs in signedness
parent
11c5b117
Changes
1
Show whitespace changes
Inline
Side-by-side
src/GUI/GraphicsTrack.hpp
View file @
9496bae6
...
...
@@ -37,12 +37,12 @@ public:
Video
,
Audio
};
GraphicsTrack
(
MediaType
type
,
int
trackNumber
,
QGraphicsItem
*
parent
=
0
)
:
QGraphicsWidget
(
parent
)
GraphicsTrack
(
MediaType
type
,
qu
int
32
trackNumber
,
QGraphicsItem
*
parent
=
0
)
:
QGraphicsWidget
(
parent
)
{
m_type
=
type
;
m_trackNumber
=
trackNumber
;
}
int
trackNumber
()
qu
int
32
trackNumber
()
{
return
m_trackNumber
;
}
...
...
@@ -61,7 +61,7 @@ protected:
private:
MediaType
m_type
;
int
m_trackNumber
;
qu
int
32
m_trackNumber
;
};
#endif // GRAPHICSTRACK_HPP
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