Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
GIMP
Commits
77856099
Commit
77856099
authored
Aug 27, 2000
by
Sven Neumann
Browse files
removed compiler warning
--Sven
parent
0016d9ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
77856099
2000-08-28 Sven Neumann <sven@gimp.org>
* plug-ins/script-fu/script-fu.c: add missing cases to switch
statement.
2000-08-28 Sven Neumann <sven@gimp.org>
* libgimp/gimpchainbutton.[ch]: emit a "toggled" signal. This
...
...
plug-ins/script-fu/script-fu.c
View file @
77856099
...
...
@@ -794,11 +794,13 @@ marshall_proc_db_call (LISP a)
lprin1s
(
a_saved
,
error_str
+
strlen
(
error_str
));
return
my_err
(
error_str
,
NIL
);
break
;
case
GIMP_PDB_CALLING_ERROR
:
strcpy
(
error_str
,
"Procedural database execution failed on invalid input arguments:
\n
"
);
lprin1s
(
a_saved
,
error_str
+
strlen
(
error_str
));
return
my_err
(
error_str
,
NIL
);
break
;
case
GIMP_PDB_SUCCESS
:
return_val
=
NIL
;
...
...
@@ -949,6 +951,10 @@ marshall_proc_db_call (LISP a)
}
}
break
;
case
GIMP_PDB_PASS_THROUGH
:
case
GIMP_PDB_CANCEL
:
/* should we do something here? */
break
;
}
/* free up the executed procedure return values */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment