> + gpointer data;
> + ScintillaObject *sci;
> +
> + sci = documents[i]->editor->sci;
> + data = g_object_steal_data(G_OBJECT(sci), "keyrecord-userdata");
> + g_free(data);
> + }
> +
> +}
> +
> +void geany_load_module(GeanyPlugin *plugin)
> +{
> + /* main_locale_init() must be called for your package before any
> localization can be done */
> + main_locale_init(LOCALEDIR, GETTEXT_PACKAGE);
> + plugin->info->name = _("Keystrokes recorder");
> + plugin->info->description = _("Allows to record some sequence of
> keystrokes and replay it");
This needs adding files to po/POTFILES.in
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/460/files/a7b8054b6a65beec7a12a9a4d6de37ad74af4dd2#r70216565