~ubuntu-branches/ubuntu/quantal/gnumeric/quantal

« back to all changes in this revision

Viewing changes to src/hlink.c

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2009-06-07 11:10:47 UTC
  • mfrom: (1.1.19 upstream) (2.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090607111047-l3rtbzfjxvmi1kx0
Tags: 1.9.8-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Promoted gnumeric-doc to Recommends in gnumeric package for help to be
    installed automatically
  - gnumeric-gtk is a transitional package
  - gnumeric conflicts with gnumeric-gtk << 1.8.3-3ubuntu1
  - call initltool-update in po*
  - remove psiconv support (psiconv is in universe):
    o debian/control: remove B-D on libpsiconv-dev
    o debian/rules: don't pass --with-psiconv to ./configure

Show diffs side-by-side

added added

removed removed

Lines of Context:
266
266
{
267
267
        GError *err = NULL;
268
268
        gboolean res = FALSE;
 
269
        char *cmd;
269
270
 
270
271
        if (lnk->target == NULL)
271
272
                return FALSE;
272
273
 
273
 
#warning TODO
 
274
        cmd = go_shell_arg_to_uri (lnk->target);
 
275
        err = go_url_show (cmd);
 
276
        g_free (cmd);
 
277
 
274
278
        if (err != NULL) {
275
279
                char *msg = g_strdup_printf(_("Unable to open '%s'"), lnk->target);
276
280
                go_cmd_context_error_invalid (GO_CMD_CONTEXT (wbc), msg, err->message);