diff options
-rwxr-xr-x | configure | 1 | ||||
-rwxr-xr-x | configure.in | 1 | ||||
-rw-r--r-- | src/bltGrMarker.C | 1 | ||||
-rw-r--r-- | src/bltGrText.C | 6 |
4 files changed, 5 insertions, 4 deletions
@@ -5542,7 +5542,6 @@ done bltGrPen.c bltGrPs.c bltGraph.c - bltImage.c bltInt.c bltList.c bltNsUtil.c diff --git a/configure.in b/configure.in index 4860457..b7fc750 100755 --- a/configure.in +++ b/configure.in @@ -87,7 +87,6 @@ TEA_ADD_SOURCES([ bltGrPen.c bltGrPs.c bltGraph.c - bltImage.c bltInt.c bltList.c bltNsUtil.c diff --git a/src/bltGrMarker.C b/src/bltGrMarker.C index a225b0a..796f643 100644 --- a/src/bltGrMarker.C +++ b/src/bltGrMarker.C @@ -37,7 +37,6 @@ #include "bltMath.h" #include "bltGraph.h" #include "bltOp.h" -#include "bltImage.h" #include "bltGrElem.h" #include "bltBitmap.h" #include "bltConfig.h" diff --git a/src/bltGrText.C b/src/bltGrText.C index 6cff888..5f8a473 100644 --- a/src/bltGrText.C +++ b/src/bltGrText.C @@ -42,9 +42,13 @@ #include "bltInt.h" #include "bltMath.h" -#include "bltImage.h" #include "bltText.h" +#define ROTATE_0 0 +#define ROTATE_90 1 +#define ROTATE_180 2 +#define ROTATE_270 3 + void Blt_GetTextExtents(Tk_Font font, int leader, const char *text, int textLen, unsigned int *widthPtr, unsigned int *heightPtr) { |