Changeset 9629 for code/branches/core6/src/orxonox/overlays
- Timestamp:
- Aug 9, 2013, 9:26:46 PM (11 years ago)
- Location:
- code/branches/core6/src/orxonox/overlays
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/orxonox/overlays/GUISheet.cc
r7401 r9629 38 38 CreateFactory(GUISheet); 39 39 40 GUISheet::GUISheet( BaseObject* creator)41 : BaseObject(c reator)40 GUISheet::GUISheet(Context* context) 41 : BaseObject(context) 42 42 , bShowOnLoad_(false) 43 43 , bHidePrevious_(false) -
code/branches/core6/src/orxonox/overlays/GUISheet.h
r7401 r9629 41 41 { 42 42 public: 43 GUISheet( BaseObject* creator);43 GUISheet(Context* context); 44 44 ~GUISheet(); 45 45 -
code/branches/core6/src/orxonox/overlays/OrxonoxOverlay.cc
r8858 r9629 63 63 SetConsoleCommand("OrxonoxOverlay", "rotateOverlay", &OrxonoxOverlay::rotateOverlay); 64 64 65 OrxonoxOverlay::OrxonoxOverlay( BaseObject* creator)66 : BaseObject(c reator)65 OrxonoxOverlay::OrxonoxOverlay(Context* context) 66 : BaseObject(context) 67 67 { 68 68 RegisterObject(OrxonoxOverlay); -
code/branches/core6/src/orxonox/overlays/OrxonoxOverlay.h
r9563 r9629 87 87 88 88 public: 89 OrxonoxOverlay( BaseObject* creator);89 OrxonoxOverlay(Context* context); 90 90 virtual ~OrxonoxOverlay(); 91 91 -
code/branches/core6/src/orxonox/overlays/OverlayGroup.cc
r8309 r9629 48 48 SetConsoleCommand("OverlayGroup", "scrollGroup", &OverlayGroup::scrollGroup); 49 49 50 OverlayGroup::OverlayGroup( BaseObject* creator)51 : BaseObject(c reator)50 OverlayGroup::OverlayGroup(Context* context) 51 : BaseObject(context) 52 52 { 53 53 RegisterObject(OverlayGroup); -
code/branches/core6/src/orxonox/overlays/OverlayGroup.h
r8309 r9629 54 54 { 55 55 public: 56 OverlayGroup( BaseObject* creator);56 OverlayGroup(Context* context); 57 57 //! Empty destructor. 58 58 ~OverlayGroup();
Note: See TracChangeset
for help on using the changeset viewer.