From 4ba57397fbc9c27d472a92cfbf68ebf405f82c33 Mon Sep 17 00:00:00 2001 From: ellson Date: Thu, 6 Jan 2005 15:17:11 +0000 Subject: [PATCH] rename gvrender.h, gvrenderint.h to gvc.h, gvcint.h --- lib/common/arrows.c | 2 +- lib/common/emit.c | 2 +- lib/common/htmltable.h | 2 +- lib/common/labels.c | 2 +- lib/common/output.c | 2 +- lib/common/psgen.c | 2 +- lib/common/render.h | 2 +- lib/common/shapes.c | 2 +- lib/gvc/{gvrender.h => gvc.h} | 2 +- lib/gvc/{gvrenderint.h => gvcint.h} | 0 lib/gvc/gvconfig.c | 2 +- lib/gvc/gvcontext.c | 2 +- lib/gvc/gvemit.c | 2 +- lib/gvc/gvjobs.c | 2 +- lib/gvc/gvlayout.c | 2 +- lib/gvc/gvplugin.c | 2 +- lib/gvc/gvplugin_layout.h | 2 +- lib/gvc/gvplugin_render.h | 2 +- lib/gvc/gvrender.c | 2 +- 19 files changed, 18 insertions(+), 18 deletions(-) rename lib/gvc/{gvrender.h => gvc.h} (99%) rename lib/gvc/{gvrenderint.h => gvcint.h} (100%) diff --git a/lib/common/arrows.c b/lib/common/arrows.c index 63f74b0de..7528a4ef8 100644 --- a/lib/common/arrows.c +++ b/lib/common/arrows.c @@ -16,7 +16,7 @@ #include "render.h" -#include "gvrender.h" +#include "gvc.h" #define sqr(a) ((double) (a) * (a)) #define dstsq(a, b) (sqr (a.x - b.x) + sqr (a.y - b.y)) diff --git a/lib/common/emit.c b/lib/common/emit.c index 24811fa01..d5e78787e 100644 --- a/lib/common/emit.c +++ b/lib/common/emit.c @@ -22,7 +22,7 @@ #include "agxbuf.h" #include "utils.h" #include "htmltable.h" -#include "gvrender.h" +#include "gvc.h" #include #ifdef QUARTZ_RENDER diff --git a/lib/common/htmltable.h b/lib/common/htmltable.h index dcb3b77ce..f01e2fe15 100644 --- a/lib/common/htmltable.h +++ b/lib/common/htmltable.h @@ -22,7 +22,7 @@ extern "C" { #define TABLE_H #include "render.h" -#include "gvrender.h" +#include "gvc.h" #define FIXED_FLAG 1 #define HALIGN_RIGHT (1 << 1) diff --git a/lib/common/labels.c b/lib/common/labels.c index 9ca39c546..7924e0ef5 100644 --- a/lib/common/labels.c +++ b/lib/common/labels.c @@ -16,7 +16,7 @@ #include "render.h" -#include "gvrender.h" +#include "gvc.h" #include "htmltable.h" #include diff --git a/lib/common/output.c b/lib/common/output.c index c37773e5a..10edada2d 100644 --- a/lib/common/output.c +++ b/lib/common/output.c @@ -15,7 +15,7 @@ **********************************************************/ #include "render.h" -#include "gvrender.h" +#include "gvc.h" #include "agxbuf.h" #ifndef DISABLE_CODEGENS diff --git a/lib/common/psgen.c b/lib/common/psgen.c index 340b6d5b2..9f7291c1c 100644 --- a/lib/common/psgen.c +++ b/lib/common/psgen.c @@ -32,7 +32,7 @@ #define PDFMAX 3240 /* Maximum size of Distiller's PDF canvas */ #include "render.h" -#include "gvrender.h" +#include "gvc.h" #include "ps.h" #include "utils.h" diff --git a/lib/common/render.h b/lib/common/render.h index 5cb998f64..fa29d2336 100644 --- a/lib/common/render.h +++ b/lib/common/render.h @@ -55,7 +55,7 @@ #include "graph.h" /* must follow types.h */ #include "globals.h" #include "renderprocs.h" -#include "gvrender.h" +#include "gvc.h" typedef struct epsf_s { int macro_id; diff --git a/lib/common/shapes.c b/lib/common/shapes.c index b202ddde2..44678d6c6 100644 --- a/lib/common/shapes.c +++ b/lib/common/shapes.c @@ -15,7 +15,7 @@ **********************************************************/ #include "render.h" -#include "gvrender.h" +#include "gvc.h" #include "htmltable.h" #include diff --git a/lib/gvc/gvrender.h b/lib/gvc/gvc.h similarity index 99% rename from lib/gvc/gvrender.h rename to lib/gvc/gvc.h index 7f27f1f1c..b99e0c95a 100644 --- a/lib/gvc/gvrender.h +++ b/lib/gvc/gvc.h @@ -20,7 +20,7 @@ #define GVRENDER_H #include "gvplugin.h" -#include "gvrenderint.h" +#include "gvcint.h" #ifdef __cplusplus extern "C" { diff --git a/lib/gvc/gvrenderint.h b/lib/gvc/gvcint.h similarity index 100% rename from lib/gvc/gvrenderint.h rename to lib/gvc/gvcint.h diff --git a/lib/gvc/gvconfig.c b/lib/gvc/gvconfig.c index 70564ab81..a879c4483 100644 --- a/lib/gvc/gvconfig.c +++ b/lib/gvc/gvconfig.c @@ -21,7 +21,7 @@ #include "config.h" #include "types.h" #include "macros.h" -#include "gvrender.h" +#include "gvc.h" /* A config for gvrender is a text file containing a diff --git a/lib/gvc/gvcontext.c b/lib/gvc/gvcontext.c index bd868b431..4feedc2be 100644 --- a/lib/gvc/gvcontext.c +++ b/lib/gvc/gvcontext.c @@ -29,7 +29,7 @@ #include "types.h" #include "macros.h" #include "graph.h" -#include "gvrender.h" +#include "gvc.h" /* from common/utils.c */ extern void *zmalloc(size_t); diff --git a/lib/gvc/gvemit.c b/lib/gvc/gvemit.c index c72dd370e..a49d3080e 100644 --- a/lib/gvc/gvemit.c +++ b/lib/gvc/gvemit.c @@ -28,7 +28,7 @@ #include "types.h" #include "macros.h" -#include "gvrender.h" +#include "gvc.h" extern void emit_graph(GVC_t * gvc, graph_t * g, int flags); diff --git a/lib/gvc/gvjobs.c b/lib/gvc/gvjobs.c index 6b1f87a2f..504a63722 100644 --- a/lib/gvc/gvjobs.c +++ b/lib/gvc/gvjobs.c @@ -20,7 +20,7 @@ #include "config.h" #include "types.h" -#include "gvrender.h" +#include "gvc.h" /* from common/utils.c */ extern void *zmalloc(size_t); diff --git a/lib/gvc/gvlayout.c b/lib/gvc/gvlayout.c index 5050bd6d9..9e72b633e 100644 --- a/lib/gvc/gvlayout.c +++ b/lib/gvc/gvlayout.c @@ -30,7 +30,7 @@ #include "macros.h" #include "gvplugin_layout.h" -#include "gvrender.h" +#include "gvc.h" int gvlayout_select(GVC_t * gvc, char *layout) { diff --git a/lib/gvc/gvplugin.c b/lib/gvc/gvplugin.c index d8e89331d..816ef969e 100644 --- a/lib/gvc/gvplugin.c +++ b/lib/gvc/gvplugin.c @@ -22,7 +22,7 @@ #include "config.h" #include "types.h" #include "macros.h" -#include "gvrender.h" +#include "gvc.h" /* * Define an apis array of name strings using an enumerated api_t as index. diff --git a/lib/gvc/gvplugin_layout.h b/lib/gvc/gvplugin_layout.h index f3124ff57..3508b62a2 100644 --- a/lib/gvc/gvplugin_layout.h +++ b/lib/gvc/gvplugin_layout.h @@ -20,7 +20,7 @@ #define GVLAYOUT_PLUGIN_H #include "gvplugin.h" -#include "gvrenderint.h" +#include "gvcint.h" #ifdef __cplusplus extern "C" { diff --git a/lib/gvc/gvplugin_render.h b/lib/gvc/gvplugin_render.h index e043eec44..60272161c 100644 --- a/lib/gvc/gvplugin_render.h +++ b/lib/gvc/gvplugin_render.h @@ -20,7 +20,7 @@ #define GVRENDER_PLUGIN_H #include "gvplugin.h" -#include "gvrenderint.h" +#include "gvcint.h" #ifdef __cplusplus extern "C" { diff --git a/lib/gvc/gvrender.c b/lib/gvc/gvrender.c index 712992d66..6417a271c 100644 --- a/lib/gvc/gvrender.c +++ b/lib/gvc/gvrender.c @@ -41,7 +41,7 @@ #include "cdt.h" #include "gvplugin_render.h" -#include "gvrender.h" +#include "gvc.h" /* FIXME - need these but without rest of crap in common/ */ extern void colorxlate(char *str, color_t * color, -- 2.50.1