pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] CVS: Games/Pingus/src PingusLevelDesc.cc,1.25,1.26 PingusLe


From: grumbel
Subject: [Pingus-CVS] CVS: Games/Pingus/src PingusLevelDesc.cc,1.25,1.26 PingusLevelDesc.hh,1.10,1.11
Date: 8 Jun 2002 16:36:22 -0000

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

Modified Files:
        PingusLevelDesc.cc PingusLevelDesc.hh 
Log Message:
Removed the last occurancies of boost::shared_ptr<Pingu> and  
boost::shared_ptr<PLF>

Index: PingusLevelDesc.cc
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/PingusLevelDesc.cc,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- PingusLevelDesc.cc  5 Dec 2001 09:15:51 -0000       1.25
+++ PingusLevelDesc.cc  8 Jun 2002 16:36:20 -0000       1.26
@@ -32,7 +32,7 @@
 #include "my_gettext.hh"
 
 
-PingusLevelDesc::PingusLevelDesc(boost::shared_ptr<PLF> arg_plf,
+PingusLevelDesc::PingusLevelDesc(PLF* arg_plf,
                                 boost::shared_ptr<Controller> arg_controller)
   : controller (arg_controller)
 {

Index: PingusLevelDesc.hh
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/PingusLevelDesc.hh,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- PingusLevelDesc.hh  13 Apr 2001 13:45:09 -0000      1.10
+++ PingusLevelDesc.hh  8 Jun 2002 16:36:20 -0000       1.11
@@ -30,30 +30,19 @@
 class PingusLevelDesc
 {
 private:
-  ///
   CL_Surface background;
-  ///
   CL_Surface level;
-  ///
   CL_Font* font;
-  ///
   CL_Font* title;
-  ///
-  boost::shared_ptr<PLF>    plf;
+  PLF* plf;
   
-  ///
   MultiLineText description;
-  ///
   boost::shared_ptr<Controller> controller;
-  ///
   std::string         levelname;
 public:
-  ///
   enum LoadingStatus { LOADING, FINISHED };
-  ///
-  PingusLevelDesc(boost::shared_ptr<PLF>,  boost::shared_ptr<Controller>);
+  PingusLevelDesc(PLF*,  boost::shared_ptr<Controller>);
   
-  ///
   void draw(PingusLevelDesc::LoadingStatus status);
 };
 




reply via email to

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