From 3950c83c2919fe59dbf442c0d4859778fadd0e8d Mon Sep 17 00:00:00 2001 From: Roger Leigh Date: Sun, 26 Oct 2008 16:16:09 +0000 Subject: Imported Upstream version 4.3.99+cvs20060521 --- src/gutenprintui2/Makefile.in | 7 ++++--- src/gutenprintui2/panel.c | 8 ++++---- 2 files changed, 8 insertions(+), 7 deletions(-) (limited to 'src/gutenprintui2') diff --git a/src/gutenprintui2/Makefile.in b/src/gutenprintui2/Makefile.in index 0d5e20e..6c56519 100644 --- a/src/gutenprintui2/Makefile.in +++ b/src/gutenprintui2/Makefile.in @@ -16,6 +16,9 @@ # Variables +#export STP_MODULE_PATH = $(top_builddir)/src/main/.libs:$(top_builddir)/src/main +#export STP_DATA_PATH = $(top_srcdir)/src/main + srcdir = @srcdir@ top_srcdir = @top_srcdir@ @@ -283,6 +286,7 @@ USE_NLS = @USE_NLS@ USE_NLS_FALSE = @USE_NLS_FALSE@ USE_NLS_TRUE = @USE_NLS_TRUE@ VERSION = @VERSION@ +WHICH_PPDS = @WHICH_PPDS@ XGETTEXT = @XGETTEXT@ YACC = @YACC@ ac_ct_AR = @ac_ct_AR@ @@ -724,9 +728,6 @@ uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES \ @SET_MAKE@ -export STP_MODULE_PATH = $(top_builddir)/src/main/.libs:$(top_builddir)/src/main -export STP_DATA_PATH = $(top_srcdir)/src/main - # Rules $(top_builddir)/src/main/libgutenprint.la: diff --git a/src/gutenprintui2/panel.c b/src/gutenprintui2/panel.c index 1e20809..466f684 100644 --- a/src/gutenprintui2/panel.c +++ b/src/gutenprintui2/panel.c @@ -1,5 +1,5 @@ /* - * "$Id: panel.c,v 1.9 2005/12/30 20:32:07 rlk Exp $" + * "$Id: panel.c,v 1.10 2006/03/18 23:56:37 rlk Exp $" * * Main window code for Print plug-in for the GIMP. * @@ -3990,11 +3990,11 @@ fill_buffer_writefunc(void *priv, const char *buffer, size_t bytes) for (i = 0; i < pixels; i++) { if (mask & 1) - where[0] = -xbuffer[0]; + where[0] = ~xbuffer[0]; if (mask & 2) - where[1] = -xbuffer[1]; + where[1] = ~xbuffer[1]; if (mask & 4) - where[2] = -xbuffer[2]; + where[2] = ~xbuffer[2]; where += 3; xbuffer += 3; } -- cgit v1.2.3