mirror of https://github.com/GNOME/gimp.git
pdb, app, libgimp: rename the "guides" PDB group to "imageguides"
This only renames files, no code changes.
This commit is contained in:
parent
3b70fb8d3a
commit
b9773efa5e
|
@ -56,11 +56,11 @@ libappinternal_procs_a_SOURCES = \
|
|||
gradient-cmds.c \
|
||||
gradient-select-cmds.c \
|
||||
gradients-cmds.c \
|
||||
guides-cmds.c \
|
||||
help-cmds.c \
|
||||
image-cmds.c \
|
||||
image-convert-cmds.c \
|
||||
image-grid-cmds.c \
|
||||
image-guides-cmds.c \
|
||||
image-select-cmds.c \
|
||||
image-undo-cmds.c \
|
||||
item-cmds.c \
|
||||
|
|
|
@ -263,7 +263,7 @@ image_get_guide_position_invoker (GimpProcedure *procedure,
|
|||
}
|
||||
|
||||
void
|
||||
register_guides_procs (GimpPDB *pdb)
|
||||
register_image_guides_procs (GimpPDB *pdb)
|
||||
{
|
||||
GimpProcedure *procedure;
|
||||
|
|
@ -57,11 +57,11 @@ internal_procs_init (GimpPDB *pdb)
|
|||
register_gradient_procs (pdb);
|
||||
register_gradient_select_procs (pdb);
|
||||
register_gradients_procs (pdb);
|
||||
register_guides_procs (pdb);
|
||||
register_help_procs (pdb);
|
||||
register_image_procs (pdb);
|
||||
register_image_convert_procs (pdb);
|
||||
register_image_grid_procs (pdb);
|
||||
register_image_guides_procs (pdb);
|
||||
register_image_select_procs (pdb);
|
||||
register_image_undo_procs (pdb);
|
||||
register_item_procs (pdb);
|
||||
|
|
|
@ -46,11 +46,11 @@ void register_gimprc_procs (GimpPDB *pdb);
|
|||
void register_gradient_procs (GimpPDB *pdb);
|
||||
void register_gradient_select_procs (GimpPDB *pdb);
|
||||
void register_gradients_procs (GimpPDB *pdb);
|
||||
void register_guides_procs (GimpPDB *pdb);
|
||||
void register_help_procs (GimpPDB *pdb);
|
||||
void register_image_procs (GimpPDB *pdb);
|
||||
void register_image_convert_procs (GimpPDB *pdb);
|
||||
void register_image_grid_procs (GimpPDB *pdb);
|
||||
void register_image_guides_procs (GimpPDB *pdb);
|
||||
void register_image_select_procs (GimpPDB *pdb);
|
||||
void register_image_undo_procs (GimpPDB *pdb);
|
||||
void register_item_procs (GimpPDB *pdb);
|
||||
|
|
|
@ -97,11 +97,11 @@ PDB_WRAPPERS_C = \
|
|||
gimpgradient_pdb.c \
|
||||
gimpgradients_pdb.c \
|
||||
gimpgradientselect_pdb.c \
|
||||
gimpguides_pdb.c \
|
||||
gimphelp_pdb.c \
|
||||
gimpimage_pdb.c \
|
||||
gimpimageconvert_pdb.c \
|
||||
gimpimagegrid_pdb.c \
|
||||
gimpimageguides_pdb.c \
|
||||
gimpimageselect_pdb.c \
|
||||
gimpimageundo_pdb.c \
|
||||
gimpitem_pdb.c \
|
||||
|
@ -151,11 +151,11 @@ PDB_WRAPPERS_H = \
|
|||
gimpgradient_pdb.h \
|
||||
gimpgradients_pdb.h \
|
||||
gimpgradientselect_pdb.h \
|
||||
gimpguides_pdb.h \
|
||||
gimphelp_pdb.h \
|
||||
gimpimage_pdb.h \
|
||||
gimpimageconvert_pdb.h \
|
||||
gimpimagegrid_pdb.h \
|
||||
gimpimageguides_pdb.h \
|
||||
gimpimageselect_pdb.h \
|
||||
gimpimageundo_pdb.h \
|
||||
gimpitem_pdb.h \
|
||||
|
|
|
@ -49,11 +49,11 @@
|
|||
#include <libgimp/gimpgradient_pdb.h>
|
||||
#include <libgimp/gimpgradients_pdb.h>
|
||||
#include <libgimp/gimpgradientselect_pdb.h>
|
||||
#include <libgimp/gimpguides_pdb.h>
|
||||
#include <libgimp/gimphelp_pdb.h>
|
||||
#include <libgimp/gimpimage_pdb.h>
|
||||
#include <libgimp/gimpimageconvert_pdb.h>
|
||||
#include <libgimp/gimpimagegrid_pdb.h>
|
||||
#include <libgimp/gimpimageguides_pdb.h>
|
||||
#include <libgimp/gimpimageselect_pdb.h>
|
||||
#include <libgimp/gimpimageundo_pdb.h>
|
||||
#include <libgimp/gimpitem_pdb.h>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* LIBGIMP - The GIMP Library
|
||||
* Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
|
||||
*
|
||||
* gimpguides_pdb.c
|
||||
* gimpimageguides_pdb.c
|
||||
*
|
||||
* This library is free software: you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -26,11 +26,11 @@
|
|||
|
||||
|
||||
/**
|
||||
* SECTION: gimpguides
|
||||
* @title: gimpguides
|
||||
* @short_description: Functions for manipulating guides.
|
||||
* SECTION: gimpimageguides
|
||||
* @title: gimpimageguides
|
||||
* @short_description: Functions for manipulating an image's guides.
|
||||
*
|
||||
* Functions for manipulating guides.
|
||||
* Functions for manipulating an image's guides.
|
||||
**/
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
/* LIBGIMP - The GIMP Library
|
||||
* Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
|
||||
*
|
||||
* gimpguides_pdb.h
|
||||
* gimpimageguides_pdb.h
|
||||
*
|
||||
* This library is free software: you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -24,8 +24,8 @@
|
|||
#error "Only <libgimp/gimp.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef __GIMP_GUIDES_PDB_H__
|
||||
#define __GIMP_GUIDES_PDB_H__
|
||||
#ifndef __GIMP_IMAGE_GUIDES_PDB_H__
|
||||
#define __GIMP_IMAGE_GUIDES_PDB_H__
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -48,4 +48,4 @@ gint gimp_image_get_guide_position (gint32 image_ID,
|
|||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GIMP_GUIDES_PDB_H__ */
|
||||
#endif /* __GIMP_IMAGE_GUIDES_PDB_H__ */
|
|
@ -295,9 +295,9 @@ app/pdb/gimppdb-utils.c
|
|||
app/pdb/gimppdb.c
|
||||
app/pdb/gimppdbcontext.c
|
||||
app/pdb/gimpprocedure.c
|
||||
app/pdb/guides-cmds.c
|
||||
app/pdb/image-cmds.c
|
||||
app/pdb/image-convert-cmds.c
|
||||
app/pdb/image-guides-cmds.c
|
||||
app/pdb/image-select-cmds.c
|
||||
app/pdb/image-undo-cmds.c
|
||||
app/pdb/item-transform-cmds.c
|
||||
|
|
|
@ -24,11 +24,11 @@ pdb_sources = \
|
|||
pdb/gradient.pdb \
|
||||
pdb/gradient_select.pdb \
|
||||
pdb/gradients.pdb \
|
||||
pdb/guides.pdb \
|
||||
pdb/help.pdb \
|
||||
pdb/image.pdb \
|
||||
pdb/image_convert.pdb \
|
||||
pdb/image_grid.pdb \
|
||||
pdb/image_guides.pdb \
|
||||
pdb/image_select.pdb \
|
||||
pdb/image_undo.pdb \
|
||||
pdb/item.pdb \
|
||||
|
|
|
@ -22,11 +22,11 @@
|
|||
gradient
|
||||
gradient_select
|
||||
gradients
|
||||
guides
|
||||
help
|
||||
image
|
||||
image_convert
|
||||
image_grid
|
||||
image_guides
|
||||
image_select
|
||||
image_undo
|
||||
item
|
||||
|
|
|
@ -261,9 +261,9 @@ CODE
|
|||
|
||||
%exports = (app => [@procs], lib => [@procs]);
|
||||
|
||||
$desc = 'Guide procedures';
|
||||
$doc_title = 'gimpguides';
|
||||
$doc_short_desc = 'Functions for manipulating guides.';
|
||||
$doc_long_desc = 'Functions for manipulating guides.';
|
||||
$desc = 'Image Guide procedures';
|
||||
$doc_title = 'gimpimageguides';
|
||||
$doc_short_desc = 'Functions for manipulating an image\'s guides.';
|
||||
$doc_long_desc = 'Functions for manipulating an image\'s guides.';
|
||||
|
||||
1;
|
Loading…
Reference in New Issue