summaryrefslogtreecommitdiffstats
path: root/src/bltGrPSOutput.C
diff options
context:
space:
mode:
authorjoye <joye>2013-12-09 19:21:34 (GMT)
committerjoye <joye>2013-12-09 19:21:34 (GMT)
commit6c3159679a8cd6b9846943c8dde6009ed03631da (patch)
treea4691529c2dbcb0da530ec443dcec80ecb416364 /src/bltGrPSOutput.C
parent1648ffa22625f85af9e1ba6c69dd084ce3fefd57 (diff)
downloadblt-6c3159679a8cd6b9846943c8dde6009ed03631da.zip
blt-6c3159679a8cd6b9846943c8dde6009ed03631da.tar.gz
blt-6c3159679a8cd6b9846943c8dde6009ed03631da.tar.bz2
*** empty log message ***
Diffstat (limited to 'src/bltGrPSOutput.C')
-rw-r--r--src/bltGrPSOutput.C4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bltGrPSOutput.C b/src/bltGrPSOutput.C
index 003db92..71d2697 100644
--- a/src/bltGrPSOutput.C
+++ b/src/bltGrPSOutput.C
@@ -1125,6 +1125,7 @@ Blt_Ps_DrawText(
TextStyle *tsPtr, /* Text attribute information */
double x, double y) /* Window coordinates where to print text */
{
+#if 0
TextLayout *textPtr;
Point2d t;
@@ -1149,7 +1150,7 @@ Blt_Ps_DrawText(
/* Initialize text (sets translation and rotation) */
Blt_Ps_Format(ps, "%d %d %g %g %g BeginText\n", textPtr->width,
- textPtr->height, tsPtr->angle, t.x, t.y);
+ textPtr->height, tsPtr->angle, t.x, t.y);
Blt_Ps_XSetFont(ps, tsPtr->font);
@@ -1157,6 +1158,7 @@ Blt_Ps_DrawText(
TextLayoutToPostScript(ps, 0, 0, textPtr);
free(textPtr);
Blt_Ps_Append(ps, "EndText\n");
+#endif
}
void