summaryrefslogtreecommitdiff
path: root/FL/Fl_PostScript.H
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2011-02-05 13:54:56 +0000
committerManolo Gouy <Manolo>2011-02-05 13:54:56 +0000
commit777ee1b8223d3ae17baf0b26d8fde4d7db5ac119 (patch)
tree7b1a22875da65651eb241c85f732e09a6ab7a2a3 /FL/Fl_PostScript.H
parent668dfd109f183ad8c4731f7fb8af39977ea89920 (diff)
Removed global variables fl_font_ and fl_size_ that are now distinct for each graphics device.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8374 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_PostScript.H')
-rw-r--r--FL/Fl_PostScript.H4
1 files changed, 0 insertions, 4 deletions
diff --git a/FL/Fl_PostScript.H b/FL/Fl_PostScript.H
index 80c5bd5c1..56b05234e 100644
--- a/FL/Fl_PostScript.H
+++ b/FL/Fl_PostScript.H
@@ -76,8 +76,6 @@ class Clip {
Clip * clip_;
int lang_level_;
- int font_;
- int size_;
int gap_;
int pages_;
@@ -182,8 +180,6 @@ class Clip {
void transformed_vertex(double x, double y);
void font(int face, int size);
- int font(){return font_;};
- int size(){return size_;};
void draw_image(const uchar* d, int x,int y,int w,int h, int delta=3, int ldelta=0){draw_scaled_image(d,x,y,w,h,w,h,delta,ldelta);};
void draw_image_mono(const uchar* d, int x,int y,int w,int h, int delta=1, int ld=0){draw_scaled_image_mono(d,x,y,w,h,w,h,delta,ld);};