]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
- cleanups
authorFlorian Brosch <flo.brosch@gmail.com>
Tue, 19 May 2009 21:19:48 +0000 (23:19 +0200)
committerFlorian Brosch <flo.brosch@gmail.com>
Tue, 19 May 2009 21:19:48 +0000 (23:19 +0200)
THANKS [new file with mode: 0644]
config.h.in
src/libvaladoc/apitree.vala

diff --git a/THANKS b/THANKS
new file mode 100644 (file)
index 0000000..cee188a
--- /dev/null
+++ b/THANKS
@@ -0,0 +1 @@
+Nicolas Joseph
index 28161880a762bae4ca038650d282d769de2df974..f7e27233199d62822eaa17bfa8bb43c491963cf4 100644 (file)
@@ -57,3 +57,7 @@
 
 /* Version number of package */
 #undef VERSION
+
+/* Valadoc data directory */
+#undef PACKAGE_DATADIR
+
index d3f9fc6de0c27e06905c14c35588a2f31bd967ff..f9522cf736839aa6fef5767d43a23a59b99d612b 100755 (executable)
@@ -185,13 +185,6 @@ public abstract class Valadoc.DocumentedElement : Basic {
 
                        return sref.comment;
                }
-               set {
-                       SourceReference sref = this.vsymbol.source_reference;
-                       if ( sref == null )
-                               return ;
-
-                       sref.comment = value;
-               }
        }
 
        public DocumentationTree? documentation {
@@ -2252,7 +2245,6 @@ public class Valadoc.Method : DocumentedElement, ParameterListHandler, Exception
                get;
        }
 
-       // FIXME
        public string? comment_str {
                owned get {
                        return this.vmethod.source_reference.comment;
@@ -3355,7 +3347,6 @@ public class Valadoc.Struct : DocumentedElement, SymbolAccessibility, Writeable,
                return this.search_construction_method ( params, pos );
        }
 
-       // TODO remove
        public string? comment_str {
                owned get {
                        return this.vstruct.source_reference.comment;
@@ -4454,7 +4445,7 @@ public class Valadoc.Tree : Vala.CodeVisitor {
 
                this.context.accept( this );
                this.set_type_references ( );
-               this.inheritance ( ); // create a switch!
+               this.inheritance ( ); // add a switch
                this.add_dependencies_to_source_package ();
                return true;
        }