~josernestodavila/ubuntu/natty/gnumeric/gnumeric-fix-725292

« back to all changes in this revision

Viewing changes to src/gnm-plugin.c

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook
  • Date: 2009-04-13 08:48:46 UTC
  • Revision ID: james.westby@ubuntu.com-20090413084846-tdir0ekp5v9rfgdg
Tags: 1.8.4-3ubuntu2
correct the IM interface so input works correctly again (LP: #333139),
fixed in upstream bug: http://bugzilla.gnome.org/show_bug.cgi?id=575267,
via the 1.8.x backported patch:
http://bugzilla.gnome.org/attachment.cgi?id=130621&action=view

Show diffs side-by-side

added added

removed removed

Lines of Context:
363
363
        PluginServiceUI *service_ui = GNM_PLUGIN_SERVICE_UI (service);
364
364
        GError *err = NULL;
365
365
        char *full_file_name;
366
 
        char *xml_ui;
 
366
        char *xml_ui, *group_name;
367
367
        char const *textdomain;
368
368
 
369
369
        GO_INIT_RET_ERROR_INFO (ret_error);
380
380
        g_free (full_file_name);
381
381
 
382
382
        textdomain = go_plugin_get_textdomain (service->plugin);
383
 
        service_ui->layout_id = gnm_app_add_extra_ui (
 
383
        group_name = g_strconcat (go_plugin_get_id (service->plugin), service->id, NULL);
 
384
        service_ui->layout_id = gnm_app_add_extra_ui (group_name,
384
385
                service_ui->actions,
385
386
                xml_ui, textdomain, service);
 
387
        g_free (group_name);
386
388
        service->is_active = TRUE;
387
389
}
388
390