Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-core / trunk / src / synfig / layer.h
index 4287df4..f729c40 100644 (file)
@@ -174,8 +174,18 @@ public:
                String cvs_id;
                String version;
                BookEntry() { }
-               BookEntry(Factory factory, const String& name,const String& local_name,const String& category,const String& cvs_id,const String& version):
-                       factory(factory),name(name),local_name(local_name),category(category),cvs_id(cvs_id),version(version) { }
+               BookEntry(Factory                factory,
+                                 const String  &name,
+                                 const String  &local_name,
+                                 const String  &category,
+                                 const String  &cvs_id,
+                                 const String  &version):
+                       factory(factory),
+                       name(name),
+                       local_name(local_name),
+                       category(category),
+                       cvs_id(cvs_id),
+                       version(version) { }
        };
 
        typedef std::map<String,BookEntry> Book;
@@ -472,10 +482,8 @@ public:
        **  context until the final blend operation. */
        virtual bool reads_context()const;
 
-#ifdef THIS_CODE_IS_NOT_USED
        //! Duplicates the Layer without duplicating the value nodes
-       virtual Layer *simple_clone()const;
-#endif /* THIS_CODE_IS_NOT_USED */
+       virtual Handle simple_clone()const;
 
 protected: