https://bugs.kde.org/show_bug.cgi?id=431126
--- Comment #11 from Laurent Montel <mon...@kde.org> --- extern "C" { Q_DECL_EXPORT KCModule *create_knote_config_display(QWidget *parent) { return new KNoteDisplayConfig(parent); } } extern "C" { Q_DECL_EXPORT KCModule *create_knote_config_collection(QWidget *parent) { return new KNoteCollectionConfig(parent); } } extern "C" { Q_DECL_EXPORT KCModule *create_knote_config_editor(QWidget *parent) { return new KNoteEditorConfig(parent); } } extern "C" { Q_DECL_EXPORT KCModule *create_knote_config_action(QWidget *parent) { return new NoteShared::NoteActionConfig(parent); } } extern "C" { Q_DECL_EXPORT KCModule *create_knote_config_network(QWidget *parent) { return new NoteShared::NoteNetworkConfig(parent); } } extern "C" { Q_DECL_EXPORT KCModule *create_knote_config_print(QWidget *parent) { return new KNotePrintConfig(parent); } } extern "C" { Q_DECL_EXPORT KCModule *create_knote_config_misc(QWidget *parent) { return new KNoteMiscConfig(parent); } } in KNoteConfigDialog.cpp so --as-needed remove libknoteprivate but it needs for it. I will move these line outside this file. -- You are receiving this mail because: You are watching all bug changes.