components: fix wrong parameter

Origin commit data
------------------
Branch: ni/coolstream
Commit: ee1077dbad
Author: Thilo Graf <dbt@novatux.de>
Date: 2012-07-17 (Tue, 17 Jul 2012)

Origin message was:
------------------
*components: fix wrong parameter

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
2012-07-17 14:48:31 +02:00
parent 6b28758304
commit d3513b65ee

View File

@@ -43,10 +43,8 @@ class CComponents
virtual void setXPos(const int& xpos){x = xpos;};
virtual void setYPos(const int& ypos){y = ypos;};
virtual void setHeight(const int& h){width = h;};
virtual void setWidth(const int& w){height = w;};
virtual void setHeight(const int& h){height = h;};
virtual void setWidth(const int& w){width = w;};
};
class CComponentsDetailLine : public CComponents