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

« back to all changes in this revision

Viewing changes to libgimpwidgets/gimpdialog.h

  • 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:
65
65
                                            GtkDialogFlags  flags,
66
66
                                            GimpHelpFunc    help_func,
67
67
                                            const gchar    *help_id,
68
 
                                            ...);
 
68
                                            ...) G_GNUC_NULL_TERMINATED;
69
69
 
70
70
GtkWidget * gimp_dialog_new_valist         (const gchar    *title,
71
71
                                            const gchar    *role,
75
75
                                            const gchar    *help_id,
76
76
                                            va_list         args);
77
77
 
 
78
GtkWidget * gimp_dialog_add_button         (GimpDialog     *dialog,
 
79
                                            const gchar    *button_text,
 
80
                                            gint            response_id);
 
81
void        gimp_dialog_add_buttons        (GimpDialog     *dialog,
 
82
                                            ...) G_GNUC_NULL_TERMINATED;
78
83
void        gimp_dialog_add_buttons_valist (GimpDialog     *dialog,
79
84
                                            va_list         args);
80
85