diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-08-25 18:05:58 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-08-25 18:05:58 +0000 |
commit | 8178291553b032de1eb17eddaf1b776d58a08f8a (patch) | |
tree | 9d62774ffa340b2d23952c8ac62b5625f514d060 /app/xterm/Tekproc.c | |
parent | 7f8f6db35e2fbeae9a6f2ce8c5ed7f4dd7498a3f (diff) |
xterm-236. Tested by form@ and simon@.
Diffstat (limited to 'app/xterm/Tekproc.c')
-rw-r--r-- | app/xterm/Tekproc.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/app/xterm/Tekproc.c b/app/xterm/Tekproc.c index 0666f0819..bf38747b6 100644 --- a/app/xterm/Tekproc.c +++ b/app/xterm/Tekproc.c @@ -1,4 +1,4 @@ -/* $XTermId: Tekproc.c,v 1.159 2008/02/21 20:21:51 tom Exp $ */ +/* $XTermId: Tekproc.c,v 1.160 2008/06/03 20:55:56 tom Exp $ */ /* * Warning, there be crufty dragons here. @@ -1493,11 +1493,9 @@ TekRealize(Widget gw, else tw->hints.flags |= PSize; - TRACE(("make resize request %dx%d\n", height, width)); - (void) XtMakeResizeRequest((Widget) tw, - width, height, - &tw->core.width, &tw->core.height); - TRACE(("...made resize request %dx%d\n", tw->core.height, tw->core.width)); + (void) REQ_RESIZE((Widget) tw, + width, height, + &tw->core.width, &tw->core.height); /* XXX This is bogus. We are parsing geometries too late. This * is information that the shell widget ought to have before we get |