Displaying 1 result from an estimated 1 matches for "devx11_patch".
2008 Apr 28
2
X11 window title setting in X11() Device (PR#11325)
...|=20
| attached base packages:
| [1] grDevices utils datasets graphics stats methods base=20=
=20=20=20=20
|=20
| other attached packages:
| [1] car_1.2-7
`----
Thanks for all your work !
Regards,
Julien=20
--=-=-=
Content-Type: text/x-diff
Content-Disposition: attachment; filename=devX11_patch.diff
--- devX11.c.orig 2008-04-28 16:22:46.000000000 +0200
+++ devX11.c 2008-04-28 16:22:57.000000000 +0200
@@ -2225,6 +2225,9 @@
else strcpy(xd->symbolfamily,fn);
}
+ strncpy(xd->title, title, 100);
+ xd->title[100] = '\0';
+
/* Start the Device Driver and Har...