Changeset 9667 for code/trunk/src/modules/overlays/debugging
- Timestamp:
- Aug 25, 2013, 9:08:42 PM (11 years ago)
- Location:
- code/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/core6 merged: 9552-9554,9556-9574,9577-9579,9585-9593,9596-9612,9626-9662
- Property svn:mergeinfo changed
-
code/trunk/src/modules/overlays/debugging/DebugFPSText.cc
r5781 r9667 35 35 namespace orxonox 36 36 { 37 CreateFactory(DebugFPSText);37 RegisterClass(DebugFPSText); 38 38 39 DebugFPSText::DebugFPSText( BaseObject* creator) : OverlayText(creator)39 DebugFPSText::DebugFPSText(Context* context) : OverlayText(context) 40 40 { 41 41 RegisterObject(DebugFPSText); -
code/trunk/src/modules/overlays/debugging/DebugFPSText.h
r5781 r9667 40 40 { 41 41 public: 42 DebugFPSText( BaseObject* creator);42 DebugFPSText(Context* context); 43 43 virtual ~DebugFPSText(); 44 44 -
code/trunk/src/modules/overlays/debugging/DebugRTRText.cc
r5781 r9667 35 35 namespace orxonox 36 36 { 37 CreateFactory(DebugRTRText);37 RegisterClass(DebugRTRText); 38 38 39 DebugRTRText::DebugRTRText( BaseObject* creator) : OverlayText(creator)39 DebugRTRText::DebugRTRText(Context* context) : OverlayText(context) 40 40 { 41 41 RegisterObject(DebugRTRText); -
code/trunk/src/modules/overlays/debugging/DebugRTRText.h
r5781 r9667 40 40 { 41 41 public: 42 DebugRTRText( BaseObject* creator);42 DebugRTRText(Context* context); 43 43 virtual ~DebugRTRText(); 44 44
Note: See TracChangeset
for help on using the changeset viewer.