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

« back to all changes in this revision

Viewing changes to plug-ins/gimpressionist/general.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:
7
7
 
8
8
#include "gimpressionist.h"
9
9
#include "infile.h"
 
10
#include "general.h"
10
11
 
11
12
#include "libgimp/stdplugins-intl.h"
12
13
 
155
156
                                                GIMP_COLOR_AREA_FLAT);
156
157
  g_signal_connect (general_color_button, "clicked",
157
158
                    G_CALLBACK (select_color), NULL);
158
 
  g_signal_connect (general_color_button, "color_changed",
 
159
  g_signal_connect (general_color_button, "color-changed",
159
160
                    G_CALLBACK (gimp_color_button_get_color),
160
161
                    &pcvals.color);
161
162
  gtk_box_pack_start (GTK_BOX (box4), general_color_button, FALSE, FALSE, 0);
200
201
  gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (tmpw),
201
202
                                pcvals.general_tileable);
202
203
 
203
 
  tmpw = gtk_check_button_new_with_label ( _("Drop Shadow"));
 
204
  tmpw = gtk_check_button_new_with_label ( _("Drop shadow"));
204
205
  general_drop_shadow = tmpw;
205
206
  gtk_box_pack_start (GTK_BOX (box2), tmpw, FALSE, FALSE, 0);
206
207
  gtk_widget_show (tmpw);