]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/general-script-def.cc
release: 0.1.9
[lilypond.git] / lily / general-script-def.cc
index 06b678a965078a313484db7b0b05dc45addbdc9a..f3b202e8055ed5dba03a7c30de404a2c1789ad35 100644 (file)
 int
 General_script_def::staff_dir_i()const
 {
-    return -1;
+  return -1;
 }
 int
 General_script_def::rel_stem_dir_i()const
 {
-    return 0;
+  return 0;
 }
 int
 General_script_def::priority_i()const
 {
-    return 1000;
+  return 1000;
 }
 
 bool
 General_script_def::inside_b()const
 {
-    return false;
+  return false;
 }
 
 bool
 General_script_def::equal_b (General_script_def const&g)const
 {
-    if (name() != g.name ())
+  if (name() != g.name ())
        return false;
 
-    return do_equal_b (&g);
+  return do_equal_b (&g);
 }
 
 bool
 General_script_def::do_equal_b (General_script_def const*)const
 {
-    return true;
+  return true;
 }
 
 
 void
 General_script_def::print() const
 {
-    DOUT << name() << "{";
-    do_print();
-    DOUT << "}";
+  DOUT << name() << "{";
+  do_print();
+  DOUT << "}";
 }
 
 void
@@ -64,8 +64,8 @@ General_script_def::do_print() const
 Atom
 General_script_def::get_atom (Paper_def*, int)const
 {
-    Symbol s;
-    return Atom (s);
+  Symbol s;
+  return Atom (s);
 }
 
 IMPLEMENT_IS_TYPE_B(General_script_def);