Changeset 15 in flair-src for trunk/lib/FlairCore/src/GroupBox.cpp
- Timestamp:
- 04/08/16 15:40:57 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairCore/src/GroupBox.cpp
r2 r15 20 20 using std::string; 21 21 22 namespace flair 23 { 24 namespace gui 25 { 22 namespace flair { 23 namespace gui { 26 24 27 GroupBox::GroupBox(const LayoutPosition * position,string name): Layout(position->getLayout(),name,"GroupBox")28 {29 SetVolatileXmlProp("row",position->Row());30 SetVolatileXmlProp("col",position->Col());31 25 GroupBox::GroupBox(const LayoutPosition *position, string name) 26 : Layout(position->getLayout(), name, "GroupBox") { 27 SetVolatileXmlProp("row", position->Row()); 28 SetVolatileXmlProp("col", position->Col()); 29 SendXml(); 32 30 33 31 delete position; 34 32 } 35 33 36 GroupBox::~GroupBox() 37 { 38 39 } 34 GroupBox::~GroupBox() {} 40 35 41 36 } // end namespace gui
Note:
See TracChangeset
for help on using the changeset viewer.