SVN commit 649292 by dfaure: Fix compilation (although I think the kedittoolbar api change needs rethinking) M +1 -1 KoFilterManager.cpp M +1 -1 KoMainWindow.cpp --- trunk/koffice/libs/kofficecore/KoFilterManager.cpp #649291:649292 @@ -571,7 +571,7 @@ // This code is "borrowed" from klibloader ;) QByteArray symname = "check_" + library->name().toLatin1(); - void* sym = library->symbol( symname ); + KLibrary::void_function_ptr sym = library->resolveFunction( symname ); if ( !sym ) { kWarning( 30500 ) << "The library " << library->name() --- trunk/koffice/libs/kofficecore/KoMainWindow.cpp #649291:649292 @@ -1339,7 +1339,7 @@ { if (rootDocument()) saveMainWindowSettings( KGlobal::config()->group( rootDocument()->componentData().componentName() ) ); - KEditToolBar edit(factory(), this); + KEditToolBar edit(factory(), QString(), this); connect(&edit,SIGNAL(newToolbarConfig()),this,SLOT(slotNewToolbarConfig())); (void) edit.exec(); }