summaryrefslogtreecommitdiff
path: root/src/GsWidget.cxx
diff options
context:
space:
mode:
authorJohannes Hofmann <johannes.hofmann@gmx.de>2004-11-10 17:49:08 +0000
committerJohannes Hofmann <johannes.hofmann@gmx.de>2004-11-10 17:49:08 +0000
commit9583092a2166fe6899c616dd2f52b73dba8d34bc (patch)
tree7272674192a6ba394a1138dba06d1537d973f352 /src/GsWidget.cxx
parente20e866ffce0d68c9118bdb47df5fe1c8b9cfd48 (diff)
get rid of those stupid floating point computations.
get rid of those stupid floating point computations.
Diffstat (limited to 'src/GsWidget.cxx')
-rw-r--r--src/GsWidget.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/GsWidget.cxx b/src/GsWidget.cxx
index e2c3341..7ecbedd 100644
--- a/src/GsWidget.cxx
+++ b/src/GsWidget.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: GsWidget.cxx,v 1.11 2004/10/26 18:08:57 hofmann Exp $"
+// "$Id: GsWidget.cxx,v 1.12 2004/11/10 18:49:08 hofmann Exp $"
//
// GsWidget routines.
//
@@ -66,7 +66,7 @@ void GsWidget::setProps() {
atoms[3] = XInternAtom(fl_display,"PAGE" , false);
atoms[4] = XInternAtom(fl_display,"DONE" , false);
- snprintf(data, 512, "%lu %d %d %d %d %d %g %g",
+ snprintf(data, 512, "%lu %d %d %d %d %d %d.0 %d.0",
0, 0, 0, 0, paper_x, paper_y, xdpi, ydpi);
int xid = fl_xid(window());
@@ -100,8 +100,8 @@ GsWidget::GsWidget(int X,int Y,int W, int H) : Fl_Widget(X, Y, W, H) {
offscreen = 0;
gs_pid = 0;
page = 0;
- xdpi = 75.0;
- ydpi = 75.0;
+ xdpi = 75;
+ ydpi = 75;
paper_x = 594; // DIN A4
paper_y = 841; //
in_fd = -1;