Removed trailing whitespace.
[synfig.git] / synfig-core / trunk / src / synfig / target_null_tile.h
index 151a7af..2e7fafe 100644 (file)
@@ -45,17 +45,17 @@ namespace synfig {
 class Target_Null_Tile : public Target_Tile
 {
        Target_Null_Tile() { }
-       
+
 public:
 
-       ~Target_Null_Tile() {  } 
+       ~Target_Null_Tile() {  }
        virtual bool add_tile(const synfig::Surface &surface, int x, int y) { return true; }
 
        virtual bool start_frame(ProgressCallback *cb=NULL)
                { return true; }
 
        virtual void end_frame() { return; }
-       
+
        static Target* create(const char *filename=0) { return new Target_Null_Tile(); }
 }; // END of class Target_Null_Tile