Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
5c460cd8
Commit
5c460cd8
authored
Feb 10, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gcc 4.1 compile fix from marvin24 # gmx.de
parent
d5584a65
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
modules/gui/skins2/controls/ctrl_tree.hpp
modules/gui/skins2/controls/ctrl_tree.hpp
+2
-2
modules/gui/skins2/utils/var_tree.hpp
modules/gui/skins2/utils/var_tree.hpp
+1
-1
modules/gui/skins2/x11/x11_graphics.hpp
modules/gui/skins2/x11/x11_graphics.hpp
+2
-2
No files found.
modules/gui/skins2/controls/ctrl_tree.hpp
View file @
5c460cd8
...
...
@@ -74,12 +74,12 @@ class CtrlTree: public CtrlGeneric, public Observer<VarTree, tree_update*>,
/// Make sure an item is visible
/// \param item an iterator to a tree item
/// \return true if it changed the position
bool
CtrlTree
::
ensureVisible
(
VarTree
::
Iterator
item
);
bool
ensureVisible
(
VarTree
::
Iterator
item
);
/// Make sure an item is visible
/// \param itemIndex the absolute index in the tree
/// \return true if it changed the position
bool
CtrlTree
::
ensureVisible
(
int
itemIndex
);
bool
ensureVisible
(
int
itemIndex
);
private:
/// Tree associated to the control
...
...
modules/gui/skins2/utils/var_tree.hpp
View file @
5c460cd8
...
...
@@ -97,7 +97,7 @@ class VarTree: public Variable, public Subject<VarTree, tree_update*>
/// Parent node
VarTree
*
parent
()
{
return
m_pParent
;
}
void
VarTree
::
checkParents
(
VarTree
*
pParent
);
void
checkParents
(
VarTree
*
pParent
);
Iterator
uncle
();
...
...
modules/gui/skins2/x11/x11_graphics.hpp
View file @
5c460cd8
...
...
@@ -98,10 +98,10 @@ class X11Graphics: public OSGraphics
GC
m_gc
;
/// Add an horizontal segment in a region
void
X11Graphics
::
addHSegmentInRegion
(
Region
&
rMask
,
int
xStart
,
void
addHSegmentInRegion
(
Region
&
rMask
,
int
xStart
,
int
xEnd
,
int
y
);
/// Add a vertical segment in a region
void
X11Graphics
::
addVSegmentInRegion
(
Region
&
rMask
,
int
yStart
,
void
addVSegmentInRegion
(
Region
&
rMask
,
int
yStart
,
int
yEnd
,
int
x
);
};
...
...
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