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

« back to all changes in this revision

Viewing changes to plug-ins/imagemap/imap_default_dialog.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:
27
27
#include <libgimp/gimpui.h>
28
28
 
29
29
#include "imap_default_dialog.h"
 
30
#include "imap_main.h"
30
31
 
31
32
 
32
33
static void
93
94
   data->cancel_cb = NULL;
94
95
 
95
96
   data->dialog = gimp_dialog_new (title, "imagemap",
96
 
                                   NULL, 0,
 
97
                                   get_dialog(), 0,
97
98
                                   /* gimp_standard_help_func,
98
99
                                      "plug-in-imagemap", */
99
100
                                   gimp_standard_help_func, NULL,
108
109
   data->ok = gtk_dialog_add_button (GTK_DIALOG (data->dialog),
109
110
                                     GTK_STOCK_OK, GTK_RESPONSE_OK);
110
111
 
 
112
   gtk_dialog_set_alternative_button_order (GTK_DIALOG (data->dialog),
 
113
                                            GTK_RESPONSE_OK,
 
114
                                            GTK_RESPONSE_APPLY,
 
115
                                            GTK_RESPONSE_CANCEL,
 
116
                                            -1);
 
117
 
111
118
   g_signal_connect (data->dialog, "response",
112
119
                     G_CALLBACK (dialog_response),
113
120
                     data);