pingus-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pingus-CVS] CVS: Games/Pingus/src/editorobjs conveyor_belt_obj.cxx,1.6


From: grumbel
Subject: [Pingus-CVS] CVS: Games/Pingus/src/editorobjs conveyor_belt_obj.cxx,1.6,1.7 ice_block_obj.cxx,1.5,1.6
Date: 4 Mar 2003 12:53:49 -0000

Update of /usr/local/cvsroot/Games/Pingus/src/editorobjs
In directory dark:/tmp/cvs-serv24099/editorobjs

Modified Files:
        conveyor_belt_obj.cxx ice_block_obj.cxx 
Log Message:
replaced:
EditorObjLst create_EditorObjs()
with
void insertEditorObjs(ObjectManager*)


Index: conveyor_belt_obj.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/conveyor_belt_obj.cxx,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- conveyor_belt_obj.cxx       4 Mar 2003 10:25:31 -0000       1.6
+++ conveyor_belt_obj.cxx       4 Mar 2003 12:53:47 -0000       1.7
@@ -82,7 +82,7 @@
 {
   WorldObjsData::ConveyorBeltData newdata;
   newdata.pos = pos;
-  return newdata.create_EditorObj();
+  return EditorObjLst(1, new ConveyorBeltObj(newdata));
 }
   
 std::string 

Index: ice_block_obj.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/editorobjs/ice_block_obj.cxx,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- ice_block_obj.cxx   28 Sep 2002 11:52:24 -0000      1.5
+++ ice_block_obj.cxx   4 Mar 2003 12:53:47 -0000       1.6
@@ -41,7 +41,7 @@
 {
   WorldObjsData::IceBlockData newdata;
   newdata.pos = pos;
-  return newdata.create_EditorObj();
+  return EditorObjLst(1, new IceBlockObj(newdata));
 }
 
 std::string 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]