mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 17:01:15 +02:00
*components: fix wrong parameter
This commit is contained in:
@@ -43,10 +43,8 @@ class CComponents
|
|||||||
|
|
||||||
virtual void setXPos(const int& xpos){x = xpos;};
|
virtual void setXPos(const int& xpos){x = xpos;};
|
||||||
virtual void setYPos(const int& ypos){y = ypos;};
|
virtual void setYPos(const int& ypos){y = ypos;};
|
||||||
virtual void setHeight(const int& h){width = h;};
|
virtual void setHeight(const int& h){height = h;};
|
||||||
virtual void setWidth(const int& w){height = w;};
|
virtual void setWidth(const int& w){width = w;};
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class CComponentsDetailLine : public CComponents
|
class CComponentsDetailLine : public CComponents
|
||||||
|
Reference in New Issue
Block a user