summaryrefslogtreecommitdiff
path: root/print/lyx
diff options
context:
space:
mode:
authorMikhail Teterin <mi@FreeBSD.org>2002-08-01 14:51:27 +0000
committerMikhail Teterin <mi@FreeBSD.org>2002-08-01 14:51:27 +0000
commitc6fb0efa2e713c1386633975da3a3b800a450cf5 (patch)
treeccbb85302c256931aa403e552d62bea0007f12f8 /print/lyx
parentUpgrade to 1.2.0. Use the new, opensourced xforms. The possibility of (diff)
Make LyX be more specific, when it can not find the font it wants
and switches to "fixed".
Notes
Notes: svn path=/head/; revision=63844
Diffstat (limited to 'print/lyx')
-rw-r--r--print/lyx/files/patch-fontwarning9
1 files changed, 9 insertions, 0 deletions
diff --git a/print/lyx/files/patch-fontwarning b/print/lyx/files/patch-fontwarning
new file mode 100644
index 000000000000..c162db45fae7
--- /dev/null
+++ b/print/lyx/files/patch-fontwarning
@@ -0,0 +1,9 @@
+Report, which font is missing to aid the user trying to configure things.
+--- src/FontLoader.C Thu Mar 21 12:25:07 2002
++++ src/FontLoader.C Thu Aug 1 10:44:19 2002
+@@ -302,3 +302,4 @@
+ } else {
+- lyxerr << "Could not get font. Using 'fixed'." << endl;
++ lyxerr << "Could not get font '" << font.c_str() <<
++ "'. Using 'fixed'." << endl;
+ fs = XLoadQueryFont(GUIRunTime::x11Display(), "fixed");