mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-01 09:51:22 +02:00
CComponentsWindow: fix wrong type for ccw_footer
This commit is contained in:
@@ -215,7 +215,7 @@ class CComponentsWindow : public CComponentsForm
|
|||||||
///object: body object, this is the container for all needed items, to add with addWindowItem()
|
///object: body object, this is the container for all needed items, to add with addWindowItem()
|
||||||
CComponentsForm * ccw_body;
|
CComponentsForm * ccw_body;
|
||||||
///object: footer object, to get access to header properties see also getFooterObject(
|
///object: footer object, to get access to header properties see also getFooterObject(
|
||||||
CComponentsForm * ccw_footer;
|
CComponentsFooter * ccw_footer;
|
||||||
///property: caption in header, see also getHeaderObject()
|
///property: caption in header, see also getHeaderObject()
|
||||||
std::string ccw_caption;
|
std::string ccw_caption;
|
||||||
///property: icon name in header, see also getHeaderObject()
|
///property: icon name in header, see also getHeaderObject()
|
||||||
@@ -297,9 +297,7 @@ class CComponentsWindow : public CComponentsForm
|
|||||||
CComponentsForm* getBodyObject(){return ccw_body;};
|
CComponentsForm* getBodyObject(){return ccw_body;};
|
||||||
|
|
||||||
///returns a pointer to the internal footer object, use this to get access to footer properities
|
///returns a pointer to the internal footer object, use this to get access to footer properities
|
||||||
CComponentsForm* getFooterObject(){return ccw_footer;};
|
CComponentsFooter* getFooterObject(){return ccw_footer;};
|
||||||
|
|
||||||
int getStartY(); //y value for start of the area below header
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user