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

« back to all changes in this revision

Viewing changes to plug-ins/imagemap/imap_rectangle.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:
389
389
   label = create_label_in_table(table, 0, 0, _("Upper left _x:"));
390
390
   props->x = create_spin_button_in_table(table, label, 0, 1, 1, 0,
391
391
                                          max_width - 1);
392
 
   g_signal_connect(props->x, "value_changed",
 
392
   g_signal_connect(props->x, "value-changed",
393
393
                    G_CALLBACK(x_changed_cb), (gpointer) props);
394
394
   create_label_in_table(table, 0, 3, _("pixels"));
395
395
 
396
396
   label = create_label_in_table(table, 1, 0, _("Upper left _y:"));
397
397
   props->y = create_spin_button_in_table(table, label, 1, 1, 1, 0,
398
398
                                          max_height - 1);
399
 
   g_signal_connect(props->y, "value_changed",
 
399
   g_signal_connect(props->y, "value-changed",
400
400
                    G_CALLBACK(y_changed_cb), (gpointer) props);
401
401
   create_label_in_table(table, 1, 3, _("pixels"));
402
402
 
403
403
   label = create_label_in_table(table, 2, 0, _("_Width:"));
404
404
   props->width = create_spin_button_in_table(table, label, 2, 1, 1, 1,
405
405
                                              max_width);
406
 
   g_signal_connect(props->width, "value_changed",
 
406
   g_signal_connect(props->width, "value-changed",
407
407
                    G_CALLBACK(width_changed_cb), (gpointer) props);
408
408
   create_label_in_table(table, 2, 3, _("pixels"));
409
409
 
410
410
   label = create_label_in_table(table, 3, 0, _("_Height:"));
411
411
   props->height = create_spin_button_in_table(table, label, 3, 1, 1, 1,
412
412
                                               max_height);
413
 
   g_signal_connect(props->height, "value_changed",
 
413
   g_signal_connect(props->height, "value-changed",
414
414
                    G_CALLBACK(height_changed_cb), (gpointer) props);
415
415
   create_label_in_table(table, 3, 3, _("pixels"));
416
416