LarsGit223 commented on this pull request.
+static void connect_documents_button_press_signal_handler(AoColorTip *colortip)
+{ + guint i = 0; + /* connect the button-press event for all open documents */ + foreach_document(i) + { + connect_document_button_press_signal_handler(colortip, documents[i]); + } +} + + +static void ao_color_tip_finalize(GObject *object) +{ + g_return_if_fail(object != NULL); + g_return_if_fail(IS_AO_COLORTIP(object)); +
The AddOns-Plugin is calling ```plugin_module_make_resident()``` so do I really need to handle that?