pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] CVS: Games/Pingus/src/backgrounds solidcolor_background.cxx


From: grumbel
Subject: [Pingus-CVS] CVS: Games/Pingus/src/backgrounds solidcolor_background.cxx,1.2,1.3 starfield_background.cxx,1.4,1.5 surface_background_data.cxx,1.2,1.3 thunderstorm_background_data.cxx,1.3,1.4
Date: 2 Jul 2002 10:42:41 -0000

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

Modified Files:
        solidcolor_background.cxx starfield_background.cxx 
        surface_background_data.cxx thunderstorm_background_data.cxx 
Log Message:
replaced std::list<shared_ptr> with std::vector<EditorObj*>

Index: solidcolor_background.cxx
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/backgrounds/solidcolor_background.cxx,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- solidcolor_background.cxx   25 Jun 2002 12:20:33 -0000      1.2
+++ solidcolor_background.cxx   2 Jul 2002 10:42:38 -0000       1.3
@@ -61,7 +61,7 @@
 SolidColorBackgroundData::create_EditorObj()
 {
   EditorObjLst lst;
-  lst.push_back (boost::shared_ptr<EditorObj>(new EditorSolidColorBackground 
(*this)));
+  lst.push_back (new EditorSolidColorBackground (*this));
   return lst;
 }
 

Index: starfield_background.cxx
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/backgrounds/starfield_background.cxx,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- starfield_background.cxx    25 Jun 2002 12:20:33 -0000      1.4
+++ starfield_background.cxx    2 Jul 2002 10:42:38 -0000       1.5
@@ -103,7 +103,7 @@
 StarfieldBackgroundData::create_EditorObj()
 {
   EditorObjLst lst;
-  lst.push_back (boost::shared_ptr<EditorObj> (new EditorStarfieldBackground 
(*this)));
+  lst.push_back (new EditorStarfieldBackground (*this));
   return lst;
 }
 

Index: surface_background_data.cxx
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/backgrounds/surface_background_data.cxx,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- surface_background_data.cxx 25 Jun 2002 12:20:33 -0000      1.2
+++ surface_background_data.cxx 2 Jul 2002 10:42:38 -0000       1.3
@@ -129,7 +129,7 @@
 {
   std::cout << "SurfaceBackgroundData::create_EditorObj(): not implemented" << 
std::endl;
   EditorObjLst lst;
-  lst.push_back(boost::shared_ptr<EditorObj> (new EditorSurfaceBackground 
(*this)));
+  lst.push_back(new EditorSurfaceBackground (*this));
   return lst;
 }
 

Index: thunderstorm_background_data.cxx
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/src/backgrounds/thunderstorm_background_data.cxx,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- thunderstorm_background_data.cxx    25 Jun 2002 12:20:33 -0000      1.3
+++ thunderstorm_background_data.cxx    2 Jul 2002 10:42:38 -0000       1.4
@@ -56,7 +56,7 @@
 ThunderstormBackgroundData::create_EditorObj()
 {
   EditorObjLst lst;
-  lst.push_back (boost::shared_ptr<EditorObj>(new EditorThunderstormBackground 
(*this)));
+  lst.push_back (new EditorThunderstormBackground (*this));
   return lst;
 }
 




reply via email to

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