Advertisement
Guest User

Untitled

a guest
Jan 9th, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. matt@matthew-Compaq-Presario-CQ60-Notebook-PC:~/Projects/footnote/build$ make
  2. [ 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
  3. /home/matt/Projects/footnote/src/Widgets/Note.vala:252.58-252.61: warning: Argument 1: Cannot pass null to non-null parameter type
  4. this.content_entry.buffer.register_serialize_tagset (null);
  5. ^^^^
  6. /home/matt/Projects/footnote/src/Widgets/Note.vala:53.54-53.57: warning: Argument 1: Cannot pass null to non-null parameter type
  7. content_entry.buffer.register_deserialize_tagset (null);
  8. ^^^^
  9. /home/matt/Projects/footnote/src/Footnote.vala:116.19-116.71: error: invocation of void method not allowed as expression
  10. for (var res=db.execute ("SELECT name,color,id FROM 'categories'");!res.finished;res.next ()){
  11. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  12. /home/matt/Projects/footnote/src/Footnote.vala:116.15-116.71: error: var declaration not allowed with non-typed initializer
  13. for (var res=db.execute ("SELECT name,color,id FROM 'categories'");!res.finished;res.next ()){
  14. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  15. /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'
  16. for (var res=db.execute ("SELECT name,color,id FROM 'categories'");!res.finished;res.next ()){
  17. ^^^
  18. /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'
  19. for (var res=db.execute ("SELECT name,color,id FROM 'categories'");!res.finished;res.next ()){
  20. ^^^
  21. /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'
  22. new Category.from_existing (this, res.fetch_string (0), (uint32)res.fetch_int64 (1), res.fetch_int(2));
  23. ^^^
  24. /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'
  25. new Category.from_existing (this, res.fetch_string (0), (uint32)res.fetch_int64 (1), res.fetch_int(2));
  26. ^^^
  27. /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'
  28. new Category.from_existing (this, res.fetch_string (0), (uint32)res.fetch_int64 (1), res.fetch_int(2));
  29. ^^^
  30. Compilation failed: 7 error(s), 2 warning(s)
  31. make[2]: *** [src/Widgets/Category.c] Error 1
  32. make[1]: *** [CMakeFiles/footnote.dir/all] Error 2
  33. make: *** [all] Error 2
  34. matt@matthew-Compaq-Presario-CQ60-Notebook-PC:~/Projects/footnote/build$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement