mirror of https://github.com/GNOME/gimp.git
renamed files:
2007-08-11 Michael Natterer <mitch@gimp.org> * app/plug-in/Makefile.am: renamed files: * app/plug-in/plug-in-error.[ch]: old names * app/plug-in/gimppluginerror.[ch]: new names * app/plug-in/plug-in-icc-profile.c * app/file/file-open.c: changed accordingly. svn path=/trunk/; revision=23217
This commit is contained in:
parent
52531a45a5
commit
cd164058b8
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2007-08-11 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/plug-in/Makefile.am: renamed files:
|
||||
|
||||
* app/plug-in/plug-in-error.[ch]: old names
|
||||
* app/plug-in/gimppluginerror.[ch]: new names
|
||||
|
||||
* app/plug-in/plug-in-icc-profile.c
|
||||
* app/file/file-open.c: changed accordingly.
|
||||
|
||||
2007-08-11 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* plug-ins/common/lcms.c: factored out code to a utility function.
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
|
||||
#include "plug-in/gimppluginmanager.h"
|
||||
#include "plug-in/gimppluginprocedure.h"
|
||||
#include "plug-in/plug-in-error.h"
|
||||
#include "plug-in/gimppluginerror.h"
|
||||
#include "plug-in/plug-in-icc-profile.h"
|
||||
|
||||
|
||||
|
|
|
@ -37,6 +37,8 @@ libappplug_in_a_SOURCES = \
|
|||
gimpplugin-progress.h \
|
||||
gimpplugindef.c \
|
||||
gimpplugindef.h \
|
||||
gimppluginerror.c \
|
||||
gimppluginerror.h \
|
||||
gimppluginmanager.c \
|
||||
gimppluginmanager.h \
|
||||
gimppluginmanager-call.c \
|
||||
|
@ -66,8 +68,6 @@ libappplug_in_a_SOURCES = \
|
|||
gimptemporaryprocedure.c \
|
||||
gimptemporaryprocedure.h \
|
||||
\
|
||||
plug-in-error.c \
|
||||
plug-in-error.h \
|
||||
plug-in-params.c \
|
||||
plug-in-params.h \
|
||||
plug-in-rc.c \
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#include <glib-object.h>
|
||||
|
||||
#include "plug-in-error.h"
|
||||
#include "gimppluginerror.h"
|
||||
|
||||
|
||||
/**
|
|
@ -16,8 +16,8 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __PLUG_IN_ERROR_H__
|
||||
#define __PLUG_IN_ERROR_H__
|
||||
#ifndef __GIMP_PLUG_IN_ERROR_H__
|
||||
#define __GIMP_PLUG_IN_ERROR_H__
|
||||
|
||||
|
||||
typedef enum
|
||||
|
@ -32,4 +32,4 @@ typedef enum
|
|||
GQuark gimp_plug_in_error_quark (void) G_GNUC_CONST;
|
||||
|
||||
|
||||
#endif /* __PLUG_IN_ERROR_H__ */
|
||||
#endif /* __GIMP_PLUG_IN_ERROR_H__ */
|
|
@ -34,7 +34,7 @@
|
|||
#include "pdb/gimppdb.h"
|
||||
#include "pdb/gimpprocedure.h"
|
||||
|
||||
#include "plug-in-error.h"
|
||||
#include "gimppluginerror.h"
|
||||
#include "plug-in-icc-profile.h"
|
||||
|
||||
#include "gimp-intl.h"
|
||||
|
|
Loading…
Reference in New Issue