]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.9
authorfred <fred>
Sun, 24 Mar 2002 19:54:06 +0000 (19:54 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:54:06 +0000 (19:54 +0000)
Documentation/CodingStyle.pod
VERSION
bin/make-patch
flower/include/string-convert.hh
lib/include/source.hh
mi2mu/Makefile

index db238815e64678c27eb31fc3373fe2f8b5b7f8bd..cddf90b58ead3a012aa72e3b7587a3583574736d 100644 (file)
@@ -179,10 +179,28 @@ Standard methods:
        Presence of these methods usually imply that it is not feasible to this
        via  a constructor
        */
-       add( .. )
+       add (..)
 
        /// replace some data of *this
-       set( .. )
+       set (..)
+
+=head2 Constructor
+
+Every class should have a default constructor.  
+
+Don't use non-default constructors if this can be avoided:
+
+       Foo f(1)
+
+is less readable than
+
+       Foo f;
+       f.x = 1
+
+or 
+       Foo f(Foo_convert::int_to_foo (1))
+
+
 
 =head1 HUNGARIAN NOTATION NAMING CONVENTION
 
diff --git a/VERSION b/VERSION
index e67ec04990696a10801f96fa3fdc18a60798cee4..b5229ae0ebaabbcdd76371fdee8052dff69a9244 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1,6 +1,6 @@
 TOPLEVEL_MAJOR_VERSION = 0
 TOPLEVEL_MINOR_VERSION = 1
-TOPLEVEL_PATCH_LEVEL = 8
+TOPLEVEL_PATCH_LEVEL = 9
 
 # use to send patches, always empty for released version:
 TOPLEVEL_MY_PATCH_LEVEL = 
index 4c98e9f35afa1249d6d49d53ec7edec5643aea84..e11d7b8533f9f81f7d48ae88330ebff175f66edf 100755 (executable)
@@ -18,7 +18,7 @@ then
    echo untarring ..
   if [ ! -f $newarc ]
   then
-       echo cant find $newarc
+       echo "can't find $newarc"
        exit
   fi
   tar zfx $newarc
@@ -29,7 +29,7 @@ then
 
   if [ ! -f $oldarc ]
   then
-       echo cant find $oldarc
+       echo "can't find $oldarc"
        exit
   fi
    tar zfx $oldarc
index 13c9f41ca77f35037dc3d00c90aa095be1453336..63785ac28d6e94becef8ebb5c3ffa40c60f5b4ae 100644 (file)
@@ -8,6 +8,7 @@
 #define STRING_CONVERT_HH
 
 #include "fproto.hh"
+#include "string.hh"
 
 
 /** The functor String_convert handles all conversions to/from String
index 96fb10193ea6cfa02f756bd17c65d5edbed794d5..1d199671ffa1383977a14c42ae3dfc9b8ba3a427 100644 (file)
@@ -5,8 +5,10 @@
 
 #ifndef SOURCE_HH
 #define SOURCE_HH
-#include "plist.hh"
+
 #include "proto.hh"
+#include "plist.hh"
+
 class Sources 
 {
 public:
index 704221df8ab047ad5115404326c18f6269f51fb6..7100902c8fa69f12397afbdafe4dac39fa774659 100644 (file)
@@ -81,5 +81,5 @@ localinstall: installexe
 
 localuninstall: uninstallexe
 
-
 $(outdir)/mi2mu-version.o: $(outdir)/version.hh
+