I don't have time to "look at the code" right now, but it looks like a linking error of the plugin library. To fix it, make sure the .pro of your plugin includes: include(../../qtcreatorplugin.pri) include(../../plugins/coreplugin/coreplugin.pri)
If you started a new plugin based on the 'help' one, this should be enough. If otherwise you "use and depend" on the help plugin, you will have to modify the help plugin to be included by your .pro file (that means: adding a 'help.pri' using as a template 'coreplugin.pri' for example..) Hope this helps you a bit, Enrico On Tuesday 15 September 2009 10:18:28 Liebe Markus (RtP2/TEF72) wrote: > Hi there, > > I am trying to develop an own plugin based on the "help" plugin. The plugin > gets compiled. But when QtCreator is started I have the red cross on the > "about plugins" dialog. The error message tells me: > > Canot load library > ~/Downloads/qt/git/qt-creator/lib/qtcreator/plugins/Nokia/libTasktracker.s > o: > (~/Downloads/qt/git/qt-creator/lib/qtcreator/plugins/Nokia/libTasktracker. > so: undefined symbol: _ZN4Core8BaseMode16staticMetaObjectE) Library base > name: > ~/Downloads/qt/git/qt-creator/lib/qtcreator/plugins/Nokia/libTasktracker.s > o > > Do I need to include a particular header file do get that symbol defined? > Do you have an idea what could cause the above error? Something like:"if > you #include foo.h you have to #include bar.h, too! > > Thanks, > Markus > > _______________________________________________ > Qt-creator mailing list > [email protected] > http://lists.trolltech.com/mailman/listinfo/qt-creator > -- Caselle da 1GB, trasmetti allegati fino a 3GB e in piu' IMAP, POP3 e SMTP autenticato? GRATIS solo con Email.it http://www.email.it/f Sponsor: Condividere contatti, calendari e attività in un unico ambiente con i propri collaboratori? * La soluzione è Email Groupware. Per maggiori informazioni, clicca qui Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=9587&d=15-9 _______________________________________________ Qt-creator mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt-creator
