Commit 5c460cd8 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

gcc 4.1 compile fix from marvin24 # gmx.de

parent d5584a65
......@@ -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
......
......@@ -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();
......
......@@ -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 );
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment