Remove "static" keyword and put correct scope for the methods in cpp file:
2013/12/29 Markus Svensson <markus.svens...@me.com>: > Hi guys, ... > static void append(QQmlListProperty<Note> *property, Note* value) { > > NoteList *list = (NoteList*) property; > > list->addNote(value); > > } => void NoteList::append(QQmlListProperty<Note> *property, Note* value) { NoteList *list = (NoteList*) property; list->addNote(value); } Keep the "static" keyword in h file though. -- Janne _______________________________________________ SailfishOS.org Devel mailing list