mirror of https://github.com/GNOME/gimp.git
fixed typo.
2005-02-13 Sven Neumann <sven@gimp.org> * app/base/base.c: fixed typo. * app/config/gimpbaseconfig.c: reverted last change, "num-processor" doesn't need a confirmation.
This commit is contained in:
parent
1c7e7a165a
commit
8c76151e7b
|
@ -1,3 +1,10 @@
|
|||
2005-02-13 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/base/base.c: fixed typo.
|
||||
|
||||
* app/config/gimpbaseconfig.c: reverted last change,
|
||||
"num-processor" doesn't need a confirmation.
|
||||
|
||||
2005-02-13 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/file/file-save.[ch]: removed file_save() and renamed
|
||||
|
|
|
@ -94,7 +94,7 @@ base_init (GimpBaseConfig *config,
|
|||
swap_is_ok = tile_swap_test ();
|
||||
|
||||
pixel_processor_init (config->num_processors);
|
||||
g_signal_connect (config, "notify::num_processors",
|
||||
g_signal_connect (config, "notify::num-processors",
|
||||
G_CALLBACK (base_num_processors_notify),
|
||||
NULL);
|
||||
|
||||
|
|
|
@ -118,7 +118,7 @@ gimp_base_config_class_init (GimpBaseConfigClass *klass)
|
|||
GIMP_CONFIG_INSTALL_PROP_UINT (object_class, PROP_NUM_PROCESSORS,
|
||||
"num-processors", NUM_PROCESSORS_BLURB,
|
||||
1, 16, 2,
|
||||
GIMP_CONFIG_PARAM_CONFIRM);
|
||||
0);
|
||||
GIMP_CONFIG_INSTALL_PROP_MEMSIZE (object_class, PROP_TILE_CACHE_SIZE,
|
||||
"tile-cache-size", TILE_CACHE_SIZE_BLURB,
|
||||
0, GIMP_MAX_MEMSIZE, 1 << 28, /* 256MB */
|
||||
|
|
Loading…
Reference in New Issue