Commit Graph

6235 Commits

Author SHA1 Message Date
Daniel Egger 145494c7ab Added magic comment to prevent enums from being exported.
2001-11-19  Daniel Egger  <degger@fhm.edu>

	* app/paint-funcs/paint-funcs.h: Added magic comment to prevent
	enums from being exported.
2001-11-19 20:18:53 +00:00
Daniel Egger 08053a30a5 app/paint-funcs/paint-funcs-mmx.h Fixed typoes and brought the code back
2001-11-19  Daniel Egger  <degger@fhm.edu>

	* app/paint-funcs/paint-funcs-mmx.h
	* app/paint-funcs/paint-funcs.c: Fixed typoes and brought the
	code back to compileland.

	Now the code IS tested. :)
2001-11-19 20:12:11 +00:00
Michael Natterer 6f2533b164 Some moving of unused files so they don't clutter app/...
2001-11-19  Michael Natterer  <mitch@gimp.org>

	Some moving of unused files so they don't clutter app/...

	* app/gdisplay_color.[ch]
	* app/gdisplay_color_ui.[ch]: removed...

	* app/display/gimpdisplayshell-filter.[ch]
	* app/display/gimpdisplayshell-filter-dialog.[ch]: ...added here.
2001-11-19 19:15:19 +00:00
Michael Natterer 2e21005a38 oops, forgot this dorectory... 2001-11-19 18:54:13 +00:00
Michael Natterer 57044c2f46 forgot to commit last time.
2001-11-19  Michael Natterer  <mitch@gimp.org>

	* app/display/gimpdisplay-foreach.c: forgot to commit last time.

	Transform stuff cleanup:

	* app/core/Makefile.am
	* app/core/core-types.h
	* app/core/gimpdrawable-transform.[ch]: new files implementing
	the actual transform functions cut from tools/gimptransformtool.*.

	* app/core/gimpdrawable-transform-utils.[ch]: new files implementing
	transform matrix assembly utility functions.

	* app/tools/gimptransformtool.[ch]: removed the stuff here. cleanup.

	* app/tools/transform_options.[ch]: removed all stuff which does
	not belong here, e.g. the transform_tool_* functions and the
	global "transform_options" variable. Works like all other tool
	options now.

	* app/tools/gimpfliptool.[ch]
	* app/tools/gimpperspectivetool.[ch]
	* app/tools/gimprotatetool.[ch]
	* app/tools/gimpscaletool.[ch]
	* app/tools/gimpsheartool.[ch]: massive code removal because
	we can use core/gimpdrawable-fransform* functions now. cleanup.

	* tools/pdbgen/Makefile.am
	* tools/pdbgen/groups.pl: added new PDB group "transform_tools".

	* tools/pdbgen/pdb/tools.pdb: removed the transform stuff here...

	* tools/pdbgen/pdb/transform_tools.pdb: and added *much*
	simplified versions which use the new core/gimpdrawable-transform*
	utilities.

	* app/pdb/Makefile.am
	* app/pdb/transform_tools_cmds.c: new file.

	* app/pdb/internal_procs.c
	* app/pdb/tools_cmds.c: regenerated.

	* libgimp/Makefile.am
	* libgimp/gimp_pdb.h
	* libgimp/gimptransformtools_pdb.[ch]: new files.

	* libgimp/gimptools_pdb.[ch]: regenerated.
2001-11-19 18:23:43 +00:00
Daniel Egger 70cec44587 app/paint-funcs/paint-funcs.c app/paint-funcs/paint-funcs-generic.h
2001-11-19  Daniel Egger  <degger@fhm.edu>

	* app/paint-funcs/paint-funcs.c
	* app/paint-funcs/paint-funcs-generic.h
	* app/paint-funcs/paint-funcs.h:
	- Statified a few functions so they can be inlined.
	- Simplified function calls.
	- Unsignified variables and parameters where possible.
	- Reduced lookuptable size for add_pixels from 256*256*4 bytes
	  to 2*256-1 bytes and O(n*n) function in paint_funcs_setup
	  to O(n). Should reduce memory consumption by almost 1/4 Mb.

	This needs much more cleanup....
2001-11-19 17:21:03 +00:00
Daniel Egger 0a28fa8c9c New file. Added glue code for the assembly MMX functions.
2001-11-19  Daniel Egger  <degger@fhm.edu>

	* app/paint-funcs/paint-funcs-mmx.h: New file. Added glue code
	for the assembly MMX functions.

	* app/paint-funcs/paint-funcs-generic.h: Moved MMX code from here ...
	* app/paint-funcs/paint-funcs-mmx.h: ... to here. Cleaned up a bit
	and don't check for use_mmx on every single call but ...
	* app/paint-funcs/paint-funcs.c: (paint_funcs_setup): ... here and
	register MMX functions if CPU has those capabilities.

	Code is untested for the MMX case due no available Intel-Machine
	right now but should't be to far away from a working state.
2001-11-19 13:46:10 +00:00
Sven Neumann 21479d29b7 changes to the text tool to make it compile with the new PangoFT2 API.
2001-11-19  Sven Neumann  <sven@gimp.org>

	* RELEASE-TO-CVS.patch: changes to the text tool to make it compile
	with the new PangoFT2 API.
2001-11-19 11:03:58 +00:00
Daniel Egger 16bbbaec07 app/paint-funcs/paint-funcs.c Split generic (read: C) code for
2001-11-19  Daniel Egger  <degger@fhm.edu>

	* app/paint-funcs/paint-funcs.c
	* app/paint-funcs/paint-funcs-generic.h: Split generic (read: C)
	code for pixelmanipulation and most of the code that belongs to it
	into new file.
	(apply_layer_funcs): Gone. The correct layer function is now
	dispatched from the layer_mode_funcs table and the table is
	per default initialised with the generic functions. Arguments
	will be passed by a struct apply_layer_mode_struct instead
	of directly per stack to avoid parameter typying madness.

	It's now cleanly possible to check for availabilty of
	MMX/AltiVec/(insert your favourite brew here) in
	paint_funcs_setup () and change the table to use faster routines.
	The old MMX cruft which is temporaribly in paint-funcs-generic.h
	will soon be gone but I'm to tired now.

	* app/paint-funcs/paint-funcs.c: Braind dead code for temporary
	buffer (which never shrunk only grew) gone and replaced by
	straightforward code.

	* app/paint-funcs/paint-funcs-generic.h: Applied a bunch of obvious
	optimisations to reduce code size and avoid parameter madness.

	* paint-funcs-[gray|graya|indexed|rga|rgba].[c|h]: Gone. I lost
	several days of work on these files and came to the conclusion
	that there has to be an easier way anyway. :)

	Everything well tested on PPC and producing exactly the same results
	as the code before so this has good odds to be the first major
	change that won't break GIMP. :)
2001-11-19 03:06:09 +00:00
Michael Natterer b240967903 fixed a comment.
2001-11-18  Michael Natterer  <mitch@gimp.org>

	* app/display/gimpdisplay-foreach.c: fixed a comment.

	* app/gui/file-open-dialog.c: no need to declare
	"extern GSList *display_list;".

	* app/gui/brush-select.c
	* tools/pdbgen/pdb/brush_select.pdb: pass opacity as [0.0..100.0]
	through the PDB and as [0.0..1.0] to the app.

	* app/pdb/brush_select_cmds.c: regenerated.

	* plug-ins/gfig/gfig.c: full opacity is 100.0, not 1.0.

	(GFig and script-fu may still be broken after this change).
2001-11-18 20:25:43 +00:00
Valek Frob 1c71b7c501 Updated russian translation. 2001-11-18 19:57:38 +00:00
Valek Frob 20cea83fec Updated russian translation/. 2001-11-18 19:52:23 +00:00
Fatih Demir 8af6a66395 file ta.po was initially added on branch gimp-1-2. 2001-11-17 21:38:53 +00:00
Michael Natterer 14098dc0eb Made --no-interface not calling gtk_init() (and thus not contacting the X
2001-11-17  Michael Natterer  <mitch@gimp.org>

	Made --no-interface not calling gtk_init() (and thus not
	contacting the X server) any more. (Fixes #58961).

	* app/core/gimp.[ch]: added two new function pointers
	"gui_main_loop_func" and "gui_main_loop_quit_func" and an own
	stack of GMainLoops which is used if they are not set.

	* app/gui/gui.[ch]: added main loop functions here and set them as
	pointers in the Gimp instance. Separated gui_libs_init() from
	gui_themes_init() so it can be used as replacement for gtk_init()
	and be called before command line parsing.

	* app/main.c: check for "--no-interface" before initializing
	anything. Added a "--g-fatal-warnings" option (cut'n'paste from
	gtkmain.c). Added a check for "--" (end of options).

	* app/app_procs.c: call the new gimp_main_loop() functions,
	call gui_themes_init().

	* app/devices.[ch]: reduce usage of "the_gimp" by passing "Gimp"
	pointers to some functions.

	* app/plug_in.c: some ugly checks for the_gimp->no_interface which
	will go away once this file is core/ui chopped. Call
	gimp_main_loop() stuff instead of gtk_main().

	* app/core/gimptoolinfo.c: allow passing a NUL GdkPixbuf pointer.
2001-11-17 16:32:34 +00:00
Wang Jian b042c682ba *** empty log message *** 2001-11-17 14:53:27 +00:00
Daniel Egger 7d1a55eb09 Prevent from crash if swap_path == NULL.
2001-11-17  Daniel Egger  <egger@fhm.edu>

	* app/base/base.c: Prevent from crash if swap_path == NULL.
2001-11-16 23:31:29 +00:00
Michael Natterer 51687bba7d Wishlist item #57812:
2001-11-16  Michael Natterer  <mitch@gimp.org>

	Wishlist item #57812:

	* app/core/gimpimage.[ch]: added a progress_callback to
	gimp_image_scale().

	* app/gui/gui.c
	* app/gui/image-commands.c
	* app/gui/resize-dialog.h
	* tools/pdbgen/pdb/image.pdb: changed accordingly.

	* app/core/gimp.[ch]: found that gimp->busy needs to be a counter,
	not a boolean, so nested calls work.

	* app/pdb/image_cmds.c: regenerated.
2001-11-16 17:08:41 +00:00
Michael Natterer 4403d58a62 Wishlist item #57669:
2001-11-16  Michael Natterer  <mitch@gimp.org>

	Wishlist item #57669:

	* app/gimprc.[ch]: replaced gimprc option "allow-resize-windows"
	by "resize-windows-on-zoom" and "resize-windows-on-resize".

	* app/gui/preferences-dialog.c: added a toggle for
	"resize-windows-on-resize".

	* app/display/gimpdisplayshell-handlers.c
	* app/display/gimpdisplayshell-scale.c
	* app/tools/gimpmagnifytool.c
	* docs/gimprc.5.in
	* etc/gimprc.in
	* etc/gimprc.win32: changed accordingly.

	* app/display/gimpdisplay-area.[ch]: added gimp_area_new().

	* app/display/gimpdisplay.c: cleanup usage of GimpArea.

	* app/display/gimpdisplayshell.[ch]: added configurable canvas
	padding color and a small color_panel to change it in the upper
	right corner of the window.

	* app/display/gimpdisplayshell-callbacks.[ch]: added a callback
	for the color_panel, initialize the color in the "realize"
	callback.

	Wishlist item #51548.

	* app/display/gimpdisplayshell-selection.[ch]
	* app/gui/menus.c
	* app/gui/view-commands.[ch]: made the layer boundary toggleable
	separately from the selection.

	* app/gui/color-notebook.c: #if 0'ed a debugging g_print().
2001-11-16 15:08:59 +00:00
Sven Neumann a1439a3cca added Black and White to popup menu. Take widget->allocation into account
2001-11-16  Sven Neumann  <sven@gimp.org>

	* libgimpwidgets/gimpcolorbutton.[ch]: added Black and White to popup
	menu. Take widget->allocation into account when calculation popup
	position since GtkButton is a NO_WINDOW widget now.
2001-11-16 14:13:10 +00:00
Sven Neumann edcccae523 s/G_GNUC_PRETTY_FUNC/G_GNUC_PRETTY_FUNCTION/
2001-11-16  Sven Neumann  <sven@gimp.org>

	* app/core/gimpimage.c: s/G_GNUC_PRETTY_FUNC/G_GNUC_PRETTY_FUNCTION/
2001-11-16 13:15:10 +00:00
Rebecca Walter 46b7fdb802 app/core/gimpcontext.c app/core/gimpdatafactory.c
2001-11-16  Rebecca Walter  <rjp@mail.tele.dk>

        * app/core/gimpcontext.c
        * app/core/gimpdatafactory.c
        * app/core/gimpdrawable-bucket-fill.c
        * app/core/gimpdrawable.c
        * app/core/gimpgradient.c
        * app/core/gimpimage-convert.c
        * app/core/gimpimage-mask.c
        * app/core/gimpimage.c: Extensive proofreading of messages and
        warnings.  Improved standardization of string format and content.
2001-11-16 12:23:01 +00:00
Michael Natterer d7b3fbe5a5 Gimp's opacity values are a pain... the core actually *should* only accept
2001-11-15  Michael Natterer  <mitch@gimp.org>

	Gimp's opacity values are a pain... the core actually *should*
	only accept and expose values in a [0.0..1.0] range.

	* app/core/gimpdrawable-blend.c
	* app/core/gimpdrawable-bucket-fill.c: take 0.0 <= opacity <= 1.0,
	*not* 0.0 < opacity <= 100.0.

	* app/tools/gimpblendtool.c: don't (opacity * 100.0) before passing.

	* tools/pdbgen/pdb/tools.pdb: (opacity / 100.0) before passing.

	* app/display/gimpdisplayshell-dnd.c: paint_mode and opacity were
	swapped in the call to gimp_drawable_bucket_fill_full().

	* app/pdb/tools_cmds.c: regenerated.
2001-11-15 23:15:52 +00:00
Michael Natterer a39ba058d0 fixed the layers dialog's "New Layer" button by checking for a floating
2001-11-15  Michael Natterer  <mitch@gimp.org>

	* app/gui/layers-commands.c: fixed the layers dialog's "New Layer"
	button by checking for a floating selection in
	layers_new_layer_query() instead of
	layers_new_layer_cmd_callback().
2001-11-15 21:31:07 +00:00
Michael Natterer f901b46da6 restructured the new draw utility functions and added
2001-11-15  Michael Natterer  <mitch@gimp.org>

	* app/tools/gimpdrawtool.[ch]: restructured the new draw utility
	functions and added gimp_draw_tool_draw_handle() and
	gimp_draw_tool_on_handle().

	* app/tools/gimpbezierselecttool.c
	* app/tools/gimpblendtool.c
	* app/tools/gimpcroptool.[ch]
	* app/tools/gimpiscissorstool.c
	* app/tools/gimpmeasuretool.c
	* app/tools/gimppainttool.c
	* app/tools/gimppathtool.c
	* app/tools/gimptransformtool.c: use the new functions all over
	the place so handle drawing and mouse_over detection work the same
	for all tools.
2001-11-15 21:17:36 +00:00
Michael Natterer 2377f709e9 removed antique Makefile targets, including the "files" hack (which was
2001-11-15  Michael Natterer  <mitch@gimp.org>

	* Makefile.am: removed antique Makefile targets, including the
	"files" hack (which was some automatic EXTRA_DIST voodoo), added
	missing stuff to EXTRA_DIST.

	* app/plug-in/Makefile.am
	* devel-docs/Makefile.am
	* docs/Makefile.am
	* plug-ins/Makefile.am
	* plug-ins/FractalExplorer/Makefile.am
	* plug-ins/FractalExplorer/fractalexplorer-examples/Makefile.am
	* plug-ins/Lighting/Makefile.am
	* plug-ins/MapObject/Makefile.am
	* plug-ins/bmp/Makefile.am
	* plug-ins/dbbrowser/Makefile.am
	* plug-ins/faxg3/Makefile.am
	* plug-ins/fits/Makefile.am
	* plug-ins/flame/Makefile.am
	* plug-ins/gap/Makefile.am
	* plug-ins/gdyntext/Makefile.am
	* plug-ins/gflare/Makefile.am
	* plug-ins/gflare/gflares/Makefile.am
	* plug-ins/gfli/Makefile.am
	* plug-ins/gimpressionist/Makefile.am
	* plug-ins/gimpressionist/Brushes/Makefile.am
	* plug-ins/gimpressionist/Paper/Makefile.am
	* plug-ins/gimpressionist/Presets/Makefile.am
	* plug-ins/ifscompose/Makefile.am
	* plug-ins/imagemap/Makefile.am
	* plug-ins/libgck/Makefile.am
	* plug-ins/libgck/gck/Makefile.am
	* plug-ins/maze/Makefile.am
	* plug-ins/mosaic/Makefile.am
	* plug-ins/pagecurl/Makefile.am
	* plug-ins/plugin-helper/Makefile.am
	* plug-ins/print/Makefile.am
	* plug-ins/rcm/Makefile.am
	* plug-ins/script-fu/Makefile.am
	* plug-ins/script-fu/scripts/Makefile.am
	* plug-ins/sel2path/Makefile.am
	* plug-ins/sgi/Makefile.am
	* plug-ins/webbrowser/Makefile.am
	* plug-ins/xjt/Makefile.am
	* tips/Makefile.am: removed "files" too, some minor cleanups.
2001-11-15 14:42:29 +00:00
Rebecca Walter c6bc58fbe6 app/core/gimpbrush.c app/core/gimpbrushpipe.c Proofreading to strings,
2001-11-15  Rebecca Walter <rjp@mail.tele.dk>
	* app/core/gimpbrush.c
	* app/core/gimpbrushpipe.c
	* app/core/gimpchannel.c:  Proofreading to strings, approved by Sven
2001-11-15 11:31:18 +00:00
Sven Neumann 1e21bf869f recreated from toplevel dir so it applies as advertised in HACKING.
2001-11-15  Sven Neumann  <sven@gimp.org>

	* RELEASE-TO-CVS.patch: recreated from toplevel dir so it applies
	as advertised in HACKING.
2001-11-15 10:32:23 +00:00
Manish Singh 1c27bdcc4f gtk_item_factory_parse_rc->gtk_accel_map_load,
2001-11-14  Manish Singh  <yosh@gimp.org>

        * RELEASE-TO-CVS.patch: gtk_item_factory_parse_rc->gtk_accel_map_load,
        gtk_item_factory_dump_rc->gtk_accel_map_save

        * configure.in: fixes for newer autoconf, AC_INIT with etc/gimprc.in
        now

        * app/core/gimpcontainer.c: g_type_instance_is_a is private (and
        got renamed recently), use G_TYPE_CHECK_INSTANCE_TYPE instead

        * app/gui/gradient-editor.c: use gtk_accel_label_set_accel_widget
        instead of gtk_accel_label_set_accel_object

        * app/gui/module-browser.c: replaced CList with a TreeView
2001-11-15 03:21:20 +00:00
Michael Natterer 11df0e6f0c data/misc/Makefile.am removed here again...
2001-11-14  Michael Natterer  <mitch@gimp.org>

	* data/misc/Makefile.am
	* data/misc/rmshm: removed here again...

	* tools/Makefile.am
	* tools/rmshm: ...and added here.
2001-11-14 20:56:29 +00:00
Michael Natterer 9a1a607b88 new directories etc/, data/images/ and data/misc/.
2001-11-14  Michael Natterer  <mitch@gimp.org>

	* configure.in: new directories etc/, data/images/ and data/misc/.

	* Makefile.am
	* data/Makefile.am: added new SUBDIRs.

	* data/images/Makefile.am
	* data/misc/Makefile.am
	* etc/Makefile.am: new Makefiles

	* gimp1_0_splash.ppm
	* gimp1_2_splash.ppm
	* gimp_logo.ppm
	* gimp_splash.ppm: removed, now in data/images/

	* rmshm
	* user_install
	* user_install.bat: removed, now in data/misc/

	* gimprc.in
	* gimprc.win32
	* gimprc_user.in
	* gtkrc_user
	* ps-menurc
	* unitrc: removed, now in etc/

	* app/gui/about-dialog.c
	* app/gui/splash.c
	* app/gui/user-install-dialog.c: changed image and script file
	paths accordingly.
2001-11-14 18:44:55 +00:00
Sven Neumann 38a1e54223 app/pdb/gimprc_cmds.c added a missing g_strdup() that caused
2001-11-14  Sven Neumann  <sven@gimp.org>

	* app/pdb/gimprc_cmds.c
	* tools/pdbgen/pdb/gimprc.pdb: added a missing g_strdup() that caused
	gimp_get_default_comment() to free the global default comment.
2001-11-14 17:34:39 +00:00
Michael Natterer 55aa4776f7 added tool_manager_button_press_active() and friends functions.
2001-11-14  Michael Natterer  <mitch@gimp.org>

	* app/tools/tool_manager.[ch]: added
	tool_manager_button_press_active() and friends functions.

	* app/display/gimpdisplayshell-callbacks.c:
	gimp_display_shell_canvas_events(): use the functions instead of
	re-fetching the active_tool whenever it may have changed
	(which requires knowledge about the tools' implementation).
	Also moved lots of variables around.
2001-11-14 17:12:51 +00:00
Michael Natterer 5d79541e11 changed build order of toplevel directories so that the stuff which is
2001-11-14  Michael Natterer  <mitch@gimp.org>

	* Makefile.am: changed build order of toplevel directories so that
	the stuff which is most likely to be broken during "make dist"
	(the po stuff) is built before the actual source.
2001-11-14 15:56:19 +00:00
Michael Natterer 3c8b37f18c added "update_guide" signal.
2001-11-14  Michael Natterer  <mitch@gimp.org>

	* app/core/gimpimage.[ch]: added "update_guide" signal.

	* app/display/gimpdisplay-foreach.[ch]: removed
	gdisplays_expose_guide().

	* app/display/gimpdisplayshell-handlers.c: added a handler for
	"update_guide" and expose the guide there.

	* app/undo.c
	* app/tools/gimpmeasuretool.c
	* app/tools/gimpmovetool.c: call gimp_image_update_guide() instead
	of gdisplays_expose_guide().
2001-11-14 15:40:30 +00:00
Kwok-Koon Cheung 58ea764172 Traditional Chinese is renamed from zh_TW.Big5 to zh_TW 2001-11-14 11:25:42 +00:00
Kwok-Koon Cheung 47429cbad6 Replace traditional Chinese translation with stable branch one, renamed file, and converted to UTF-8. 2001-11-14 11:08:27 +00:00
Kwok-Koon Cheung a09958a9e3 Replace zh_TW.Big5.po with traditional Chinese translation from stable branch, and resolving CVS conflict 2001-11-14 11:00:25 +00:00
Kwok-Koon Cheung 8db641353b Replace zh_TW.Big5.po from translation from stable branch, and resolving CVS conflict 2001-11-14 10:56:04 +00:00
Kwok-Koon Cheung f722c818a1 CVS conflict resolved for this directory 2001-11-14 10:50:16 +00:00
Kwok-Koon Cheung 3c2fd5f0cf Replace traditional Chinese translation, and resolving CVS conflict 2001-11-14 10:47:47 +00:00
Kwok-Koon Cheung 097ec355c7 Seems CVS conflict is resolved for this directory 2001-11-14 10:44:44 +00:00
Kwok-Koon Cheung 1cbaa5ab66 Replace traditional Chinese translation, and trying to solve CVS conflict 2001-11-14 10:33:48 +00:00
Michael Natterer 6c57183853 a cut'n'paste bug prevented tools and imagefiles from being dropped.
2001-11-13  Michael Natterer  <mitch@gimp.org>

	* app/widgets/gimpdnd.h: a cut'n'paste bug prevented tools and
	imagefiles from being dropped.
2001-11-13 18:10:58 +00:00
Michael Natterer ada9a681db get the active_tool _after_ maybe changing it by calling
2001-11-13  Michael Natterer  <mitch@gimp.org>

	* app/display/gimpdisplayshell-callbacks.c: get the active_tool
	_after_ maybe changing it by calling devices_check_change().
2001-11-13 17:59:22 +00:00
Michael Natterer eb05a0e3fc the toolbox menu's last_used_documents menu contained one entry too few if
2001-11-13  Michael Natterer  <mitch@gimp.org>

	* app/gui/menus.c: the toolbox menu's last_used_documents menu
	contained one entry too few if the number of documents was smaller
	or equal than gimprc.last_opened_size.
2001-11-13 16:56:58 +00:00
Michael Natterer 6ed7523052 use GimpCoords structs for cur_coords, last_coords and start_coords and
2001-11-13  Michael Natterer  <mitch@gimp.org>

	* app/tools/gimppainttool.[ch]: use GimpCoords structs for
	cur_coords, last_coords and start_coords and the undo struct
	instead of storing separate gdouble values.

	* app/undo.c
	* app/tools/gimpairbrushtool.c
	* app/tools/gimpclonetool.c
	* app/tools/gimpconvolvetool.c
	* app/tools/gimpdodgeburntool.c
	* app/tools/gimperasertool.c
	* app/tools/gimppaintbrushtool.c
	* app/tools/gimppenciltool.c
	* app/tools/gimpsmudgetool.c: changed accordingly.
2001-11-13 16:21:34 +00:00
Michael Natterer 95bc70d933 allow passing NULL to temp_buf_resize() again.
2001-11-13  Michael Natterer  <mitch@gimp.org>

	* app/base/temp-buf.c: allow passing NULL to temp_buf_resize() again.
2001-11-13 15:51:20 +00:00
Michael Natterer 63d75ee740 Sven Neumann <sven@gimp.org>
2001-11-13  Michael Natterer  <mitch@gimp.org>
	    Sven Neumann  <sven@gimp.org>

	* Made 1.3.0 release
2001-11-13 07:53:38 +00:00
Sven Neumann b7e99aeb57 temporarily commented out gap, gdyntext and helpbrowser
2001-11-13  Sven Neumann  <sven@gimp.org>

        * POTFILES.in: temporarily commented out gap, gdyntext and helpbrowser
2001-11-13 07:08:46 +00:00
Sven Neumann 6fbd45ac68 more dist fixes 2001-11-13 06:17:07 +00:00