CComponentsForm, CSignalBar: rename offset vars

Origin commit data
------------------
Branch: ni/coolstream
Commit: c2c79060b8
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-02-06 (Thu, 06 Feb 2014)


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

------------------
This commit was generated by Migit
This commit is contained in:
2014-02-06 10:06:21 +01:00
parent bf8eccec62
commit b500fbec92
3 changed files with 14 additions and 14 deletions

View File

@@ -39,8 +39,8 @@ class CComponentsForm : public CComponentsItem
///generates next possible index for an item, see also cc_item_index, getIndex(), setIndex()
int genIndex();
int append_h_offset;
int append_v_offset;
int append_x_offset;
int append_y_offset;
public:
CComponentsForm();
@@ -70,7 +70,7 @@ class CComponentsForm : public CComponentsItem
///return size (count) of available items
virtual size_t size(){return v_cc_items.size();};
virtual void setAppendOffset(const int &h_offset, const int& v_offset){append_h_offset = h_offset; append_v_offset = v_offset;};
virtual void setAppendOffset(const int &x_offset, const int& y_offset){append_x_offset = x_offset; append_y_offset = y_offset;};
};
#endif