~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to plug-ins/imagemap/imap_edit_area_info.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 *
4
4
 * Generates clickable image maps.
5
5
 *
6
 
 * Copyright (C) 1998-2004 Maurits Rijk  m.rijk@chello.nl
 
6
 * Copyright (C) 1998-2005 Maurits Rijk  m.rijk@chello.nl
7
7
 *
8
8
 * This program is free software; you can redistribute it and/or modify
9
9
 * it under the terms of the GNU General Public License as published by
273
273
   label = create_label_in_table(table, 9, 0, _("ALT te_xt: (optional)"));
274
274
   dialog->comment = create_entry_in_table(table, label, 10, 0);
275
275
 
276
 
   append_page (notebook, table, IMAP_STOCK_LINK, _("_Link"));
 
276
   append_page (notebook, table, GIMP_STOCK_WEB, _("_Link"));
277
277
}
278
278
 
279
279
static void
454
454
   default_dialog_set_cancel_cb(data->dialog, edit_area_cancel_cb, data);
455
455
 
456
456
   data->notebook = notebook = gtk_notebook_new();
457
 
   g_signal_connect_after(notebook, "switch_page",
 
457
   g_signal_connect_after(notebook, "switch-page",
458
458
                          G_CALLBACK(switch_page), (gpointer) data);
459
459
 
460
460
   gtk_box_pack_start(GTK_BOX(data->dialog->vbox), notebook, TRUE, TRUE, 0);