]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Fix trailling whitespaces
authorDidier Ptitjes <ptitjes@free.fr>
Mon, 26 Oct 2009 00:04:23 +0000 (01:04 +0100)
committerFlorian Brosch <flo.brosch@gmail.com>
Mon, 26 Oct 2009 00:04:23 +0000 (01:04 +0100)
src/doclets/valadoc.org/doclet.vala
src/libvaladoc/api/tree.vala
src/libvaladoc/api/typereference.vala
src/libvaladoc/content/list.vala
src/libvaladoc/documentation/wikiscanner.vala
src/libvaladoc/parser/token.vala

index 1edb2be396fba981d569b0e6891d88db1e9842a2..9e4959eac4e6bb7b53add2ca98d6b82b7f341e0a 100755 (executable)
@@ -232,7 +232,7 @@ public class Valadoc.ValadocOrg.Doclet : BasicDoclet {
                else {
                        modifier = "NORMAL";
                }
-       
+
                this.file.printf ("INSERT INTO `ValadocClasses` (`id`, `modifier`) VALUES ((SELECT `id` FROM `ValadocApiElement` WHERE BINARY `fullname`='%s' LIMIT 1),'%s');\n", this.get_type_path(cl), modifier);
                this.write_documentation (cl);
        }
index b76a303feeaffcf6834db3b8c43c283accf80b69..dfacf98a4f0c8d91eec9b0911ab7392cdebb35be 100644 (file)
@@ -177,9 +177,9 @@ public class Valadoc.Api.Tree {
                        // ignore multiple occurences of the same package
                        return true;
                }
-       
+
                var package_path = context.get_package_path (pkg, settings.vapi_directories);
-               
+
                if (package_path == null) {
                        return false;
                }
@@ -211,7 +211,7 @@ public class Valadoc.Api.Tree {
                                Vala.Report.error (null, "Unable to read dependency file: %s".printf (e.message));
                        }
                }
-               
+
                return true;
        }
 
@@ -259,9 +259,9 @@ public class Valadoc.Api.Tree {
                                } else if (source.has_suffix (".vapi")) {
                                        string file_name = Path.get_basename (source);
                                        file_name = file_name.ndup ( file_name.size() - ".vapi".size() );
-                       
+
                                        var vfile = new Vala.SourceFile (context, rpath, true);
-                                       Package vdpkg = new Package (vfile, file_name); 
+                                       Package vdpkg = new Package (vfile, file_name);
                                        context.add_source_file (vfile);
                                        this.packages.add (vdpkg);
                                } else if (source.has_suffix (".c")) {
index 10071abb7576fabd8959b3b7e67dae9d99a68f36..2934362b88c74b4b41319b8c76f5f872250703f9 100644 (file)
@@ -116,7 +116,7 @@ public class Valadoc.Api.TypeReference : Item {
 
                return true;
        }
-       
+
        public bool is_dynamic {
                get {
                        return this.vtyperef.is_dynamic;
index b3c9b48efecc94fe66127fa4bc28b7da46c0fefb..882715a64242dcfb5ce0369aafff0422688877bf 100755 (executable)
@@ -25,7 +25,7 @@ using Gee;
 
 public class Valadoc.Content.List : ContentElement, Block {
        public Gee.List<ListItem> items { get { return _items; } }
-       
+
        private Gee.List<ListItem> _items;
 
        internal List () {
index d42e2e7fc7a65996236fcaf80c11f7f84e1de250..3f0c8dfc2a8c3e93bff44344bcaa50592ef8a26d 100644 (file)
@@ -215,7 +215,7 @@ public class Valadoc.WikiScanner : Object, Scanner {
                        case '#':
                                emit_token (TokenType.SHARP);
                                break;
-                               
+
                        case '-':
                                if (_last_char.isalnum () || get_next_char ().isalnum ()) {
                                        append_char (c);
index 1cc0d1b41bda3fb025ed1d7c6c4992bce7fb687b..d6917dff6172f6bec66154dc81a69a62c57f086f 100644 (file)
@@ -53,7 +53,7 @@ public class Valadoc.Token : Object {
                                return false;
                        } else if (_word[0] == '0' && _word.length > 1) {
                                return false;
-                       } 
+                       }
                        for (int i = 0; i < _word.length; i++) {
                                if (_word[i] < '0' || _word[i] > '9') {
                                        return false;