mirror of https://github.com/GNOME/gimp.git
INIT_I18N_UI() instead of INIT_I18N() for save dialog.
* plug-ins/common/xpm.c: INIT_I18N_UI() instead of INIT_I18N() for save dialog. -- yasuhiro
This commit is contained in:
parent
8d64faa350
commit
dec91421e2
|
@ -1,3 +1,8 @@
|
|||
2000-03-27 Shirasaki Yasuhiro <yasuhiro@gnome.gr.jp>
|
||||
|
||||
* plug-ins/common/xpm.c: INIT_I18N_UI() instead of INIT_I18N()
|
||||
for save dialog.
|
||||
|
||||
2000-03-27 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/transform_core.c: the button_press and cursor_update
|
||||
|
|
|
@ -207,10 +207,10 @@ run (gchar *name,
|
|||
values[0].type = PARAM_STATUS;
|
||||
values[0].data.d_status = STATUS_EXECUTION_ERROR;
|
||||
|
||||
INIT_I18N();
|
||||
|
||||
if (strcmp (name, "file_xpm_load") == 0)
|
||||
{
|
||||
INIT_I18N();
|
||||
|
||||
image_ID = load_image (param[1].data.d_string);
|
||||
|
||||
if (image_ID != -1)
|
||||
|
@ -226,6 +226,8 @@ run (gchar *name,
|
|||
}
|
||||
else if (strcmp (name, "file_xpm_save") == 0)
|
||||
{
|
||||
INIT_I18N_UI();
|
||||
|
||||
init_gtk ();
|
||||
|
||||
image_ID = param[1].data.d_int32;
|
||||
|
|
Loading…
Reference in New Issue