Removed some unused code
authorgrumbel <grumbel@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Sat, 5 Dec 2009 08:26:30 +0000 (08:26 +0000)
committergrumbel <grumbel@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Sat, 5 Dec 2009 08:26:30 +0000 (08:26 +0000)
git-svn-id: http://supertux.lethargik.org/svn/supertux/trunk/supertux@6170 837edb03-e0f3-0310-88ca-d4d4e8b29345

src/video/surface.cpp
src/video/surface.hpp

index 6c55ab1..0ca60b7 100644 (file)
@@ -35,12 +35,6 @@ Surface::create(const std::string& file, int x, int y, int w, int h)
   return std::auto_ptr<Surface>(new Surface(file, x, y, w, h));
 }
 
-std::auto_ptr<Surface> 
-Surface::create(const Surface& other)
-{
-  return std::auto_ptr<Surface>(new Surface(other));
-}
-
 Surface::Surface(const std::string& file) :
   texture(texture_manager->get(file)),
   surface_data(),
index 6769e60..894bb6e 100644 (file)
@@ -34,7 +34,6 @@ class Surface
 public:
   static std::auto_ptr<Surface> create(const std::string& file);
   static std::auto_ptr<Surface> create(const std::string& file, int x, int y, int w, int h);
-  static std::auto_ptr<Surface> create(const Surface& other);
 
 private:
   Texture* texture;