libgimpcolor: rename gimpcairocolor.[ch] to gimpcairo.[ch]

This commit is contained in:
Michael Natterer 2012-05-03 03:56:10 +02:00
parent 48a264ce4b
commit d766ec6ae9
5 changed files with 19 additions and 19 deletions

View file

@ -21,8 +21,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef __GIMP_CAIRO_H__ #ifndef __APP_GIMP_CAIRO_H__
#define __GIMP_CAIRO_H__ #define __APP_GIMP_CAIRO_H__
GeglBuffer * gimp_cairo_image_surface_create_buffer (cairo_surface_t *surface); GeglBuffer * gimp_cairo_image_surface_create_buffer (cairo_surface_t *surface);
@ -42,4 +42,4 @@ void gimp_cairo_add_segments (cairo_t *cr,
gint n_segs); gint n_segs);
#endif /* __GIMP_CAIRO_H__ */ #endif /* __APP_GIMP_CAIRO_H__ */

View file

@ -69,8 +69,8 @@ libgimpcolor_2_0_la_SOURCES = \
gimpadaptivesupersample.h \ gimpadaptivesupersample.h \
gimpbilinear.c \ gimpbilinear.c \
gimpbilinear.h \ gimpbilinear.h \
gimpcairocolor.c \ gimpcairo.c \
gimpcairocolor.h \ gimpcairo.h \
gimpcmyk.c \ gimpcmyk.c \
gimpcmyk.h \ gimpcmyk.h \
gimpcolormanaged.c \ gimpcolormanaged.c \
@ -92,7 +92,7 @@ libgimpcolorinclude_HEADERS = \
gimpcolortypes.h \ gimpcolortypes.h \
gimpadaptivesupersample.h \ gimpadaptivesupersample.h \
gimpbilinear.h \ gimpbilinear.h \
gimpcairocolor.h \ gimpcairo.h \
gimpcmyk.h \ gimpcmyk.h \
gimpcolormanaged.h \ gimpcolormanaged.h \
gimpcolorspace.h \ gimpcolorspace.h \

View file

@ -1,9 +1,9 @@
/* LIBGIMP - The GIMP Library /* LIBGIMP - The GIMP Library
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
* *
* gimpcairocolor.c * gimpcairo.c
* Copyright (C) 2007 Sven Neumann <sven@gimp.org> * Copyright (C) 2007 Sven Neumann <sven@gimp.org>
* 2010 Michael Natterer <mitch@gimp.org> * 2010-2012 Michael Natterer <mitch@gimp.org>
* *
* This library is free software: you can redistribute it and/or * This library is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public
@ -29,12 +29,12 @@
#include "gimpcolortypes.h" #include "gimpcolortypes.h"
#include "gimpcairocolor.h" #include "gimpcairo.h"
/** /**
* SECTION: gimpcairocolor * SECTION: gimpcairo
* @title: GimpCairoColor * @title: GimpCairo
* @short_description: Color utility functions for cairo * @short_description: Color utility functions for cairo
* *
* Utility functions that make cairo easier to use with GIMP color * Utility functions that make cairo easier to use with GIMP color

View file

@ -1,9 +1,9 @@
/* LIBGIMP - The GIMP Library /* LIBGIMP - The GIMP Library
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
* *
* gimpcairocolor.h * gimpcairo.h
* Copyright (C) 2007 Sven Neumann <sven@gimp.org> * Copyright (C) 2007 Sven Neumann <sven@gimp.org>
* 2010 Michael Natterer <mitch@gimp.org> * 2010-2012 Michael Natterer <mitch@gimp.org>
* *
* This library is free software: you can redistribute it and/or * This library is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public
@ -20,8 +20,8 @@
* <http://www.gnu.org/licenses/>. * <http://www.gnu.org/licenses/>.
*/ */
#ifndef __GIMP_CAIRO_COLOR_H__ #ifndef __GIMP_CAIRO_H__
#define __GIMP_CAIRO_COLOR_H__ #define __GIMP_CAIRO_H__
void gimp_cairo_set_source_rgb (cairo_t *cr, void gimp_cairo_set_source_rgb (cairo_t *cr,
@ -153,4 +153,4 @@ cairo_pattern_t * gimp_cairo_checkerboard_create (cairo_t *cr,
#endif #endif
#endif /* __GIMP_CAIRO_COLOR_H__ */ #endif /* __GIMP_CAIRO_H__ */

View file

@ -25,7 +25,7 @@
#include <libgimpcolor/gimpadaptivesupersample.h> #include <libgimpcolor/gimpadaptivesupersample.h>
#include <libgimpcolor/gimpbilinear.h> #include <libgimpcolor/gimpbilinear.h>
#include <libgimpcolor/gimpcairocolor.h> #include <libgimpcolor/gimpcairo.h>
#include <libgimpcolor/gimpcolormanaged.h> #include <libgimpcolor/gimpcolormanaged.h>
#include <libgimpcolor/gimpcolorspace.h> #include <libgimpcolor/gimpcolorspace.h>
#include <libgimpcolor/gimpcmyk.h> #include <libgimpcolor/gimpcmyk.h>