Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- matt@matthew-Compaq-Presario-CQ60-Notebook-PC:~/Projects/footnote/build$ make
- [ 12%] Generating src/Widgets/Category.c, src/Widgets/Note.c, src/Widgets/NoteView.c, src/Widgets/TaggingArea.c, build/src/Config.c, src/Footnote.c
- /home/matt/Projects/footnote/src/Widgets/Note.vala:252.58-252.61: warning: Argument 1: Cannot pass null to non-null parameter type
- this.content_entry.buffer.register_serialize_tagset (null);
- ^^^^
- /home/matt/Projects/footnote/src/Widgets/Note.vala:53.54-53.57: warning: Argument 1: Cannot pass null to non-null parameter type
- content_entry.buffer.register_deserialize_tagset (null);
- ^^^^
- /home/matt/Projects/footnote/src/Footnote.vala:116.19-116.71: error: invocation of void method not allowed as expression
- for (var res=db.execute ("SELECT name,color,id FROM 'categories'");!res.finished;res.next ()){
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- /home/matt/Projects/footnote/src/Footnote.vala:116.15-116.71: error: var declaration not allowed with non-typed initializer
- for (var res=db.execute ("SELECT name,color,id FROM 'categories'");!res.finished;res.next ()){
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- /home/matt/Projects/footnote/src/Footnote.vala:116.87-116.89: error: The name `res' does not exist in the context of `Footnote.FootnoteApp.new'
- for (var res=db.execute ("SELECT name,color,id FROM 'categories'");!res.finished;res.next ()){
- ^^^
- /home/matt/Projects/footnote/src/Footnote.vala:116.74-116.76: error: The name `res' does not exist in the context of `Footnote.FootnoteApp.new'
- for (var res=db.execute ("SELECT name,color,id FROM 'categories'");!res.finished;res.next ()){
- ^^^
- /home/matt/Projects/footnote/src/Footnote.vala:117.41-117.43: error: The name `res' does not exist in the context of `Footnote.FootnoteApp.new'
- new Category.from_existing (this, res.fetch_string (0), (uint32)res.fetch_int64 (1), res.fetch_int(2));
- ^^^
- /home/matt/Projects/footnote/src/Footnote.vala:117.71-117.73: error: The name `res' does not exist in the context of `Footnote.FootnoteApp.new'
- new Category.from_existing (this, res.fetch_string (0), (uint32)res.fetch_int64 (1), res.fetch_int(2));
- ^^^
- /home/matt/Projects/footnote/src/Footnote.vala:117.92-117.94: error: The name `res' does not exist in the context of `Footnote.FootnoteApp.new'
- new Category.from_existing (this, res.fetch_string (0), (uint32)res.fetch_int64 (1), res.fetch_int(2));
- ^^^
- Compilation failed: 7 error(s), 2 warning(s)
- make[2]: *** [src/Widgets/Category.c] Error 1
- make[1]: *** [CMakeFiles/footnote.dir/all] Error 2
- make: *** [all] Error 2
- matt@matthew-Compaq-Presario-CQ60-Notebook-PC:~/Projects/footnote/build$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement