fixed docs for gimp-context-push/pop.

2006-01-04  Michael Natterer  <mitch@gimp.org>

	* tools/pdbgen/pdb/context.pdb: fixed docs for gimp-context-push/pop.

	* app/pdb/context_cmds.c
	* libgimp/gimpcontext_pdb.c: regenerated.
This commit is contained in:
Michael Natterer 2006-01-04 22:31:45 +00:00 committed by Michael Natterer
parent ad9368568f
commit 999f58b86f
4 changed files with 18 additions and 8 deletions

View file

@ -1,3 +1,10 @@
2006-01-04 Michael Natterer <mitch@gimp.org>
* tools/pdbgen/pdb/context.pdb: fixed docs for gimp-context-push/pop.
* app/pdb/context_cmds.c
* libgimp/gimpcontext_pdb.c: regenerated.
2006-01-03 Sven Neumann <sven@gimp.org>
* app/config/gimprc-blurbs.h (SWAP_PATH_BLURB): added missing space

View file

@ -112,7 +112,7 @@ static ProcRecord context_push_proc =
"gimp-context-push",
"gimp-context-push",
"Pushes a context to the top of the plug-in's context stack.",
"This procedure creates a new context by copying the current context. This copy becomes the new current context for the calling plug-in until it is popped again.",
"This procedure creates a new context by copying the current context. This copy becomes the new current context for the calling plug-in until it is popped again using gimp-context-pop.",
"Michael Natterer <mitch@gimp.org> & Sven Neumann <sven@gimp.org>",
"Michael Natterer & Sven Neumann",
"2004",
@ -148,7 +148,7 @@ static ProcRecord context_pop_proc =
"gimp-context-pop",
"gimp-context-pop",
"Pops the topmost context from the plug-in's context stack.",
"This procedure creates a new context and makes it the current context for the calling plug-in.",
"This procedure removes the topmost context from the plug-in's context stack. The context that was active before the corresponding call to gimp-context-push becomes the new current context of the plug-in.",
"Michael Natterer <mitch@gimp.org> & Sven Neumann <sven@gimp.org>",
"Michael Natterer & Sven Neumann",
"2004",

View file

@ -32,7 +32,7 @@
*
* This procedure creates a new context by copying the current context.
* This copy becomes the new current context for the calling plug-in
* until it is popped again.
* until it is popped again using gimp-context-pop.
*
* Returns: TRUE on success.
*
@ -61,8 +61,10 @@ gimp_context_push (void)
*
* Pops the topmost context from the plug-in's context stack.
*
* This procedure creates a new context and makes it the current
* context for the calling plug-in.
* This procedure removes the topmost context from the plug-in's
* context stack. The context that was active before the corresponding
* call to gimp-context-push becomes the new current context of the
* plug-in.
*
* Returns: TRUE on success.
*

View file

@ -37,7 +37,7 @@ sub context_push {
$help = <<'HELP';
This procedure creates a new context by copying the current context. This
copy becomes the new current context for the calling plug-in until it is
popped again.
popped again using gimp-context-pop.
HELP
&pdb_misc;
@ -62,8 +62,9 @@ sub context_pop {
$blurb = 'Pops the topmost context from the plug-in\'s context stack.';
$help = <<'HELP';
This procedure creates a new context and makes it the current context for the
calling plug-in.
This procedure removes the topmost context from the plug-in's context stack.
The context that was active before the corresponding call to gimp-context-push
becomes the new current context of the plug-in.
HELP
&pdb_misc;