CComponentsWindow: fix wrong type for ccw_footer

Origin commit data
------------------
Commit: 4a2a55e3dd
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-06-23 (Sun, 23 Jun 2013)
This commit is contained in:
2013-06-23 23:27:28 +02:00
parent e3909c10b0
commit e86387b795

View File

@@ -215,7 +215,7 @@ class CComponentsWindow : public CComponentsForm
///object: body object, this is the container for all needed items, to add with addWindowItem()
CComponentsForm * ccw_body;
///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()
std::string ccw_caption;
///property: icon name in header, see also getHeaderObject()
@@ -297,9 +297,7 @@ class CComponentsWindow : public CComponentsForm
CComponentsForm* getBodyObject(){return ccw_body;};
///returns a pointer to the internal footer object, use this to get access to footer properities
CComponentsForm* getFooterObject(){return ccw_footer;};
int getStartY(); //y value for start of the area below header
CComponentsFooter* getFooterObject(){return ccw_footer;};
};
#endif