summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-07-14 07:30:35 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-07-14 07:30:35 +0000
commit83127455e903d9c12b66ef585c27d0ef4e51aaaf (patch)
treef316a20276ef0491c6946211784483d658d5f955 /toolkit
parent3477cc6dc50382238d6642c4e70a37cdef7532c1 (diff)
#i10000# There is no GetFirstChar() nor GetLastChar() in class ImplFontMetric any more (HDU, CWS fontlists02)
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/helper/vclunohelper.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/toolkit/source/helper/vclunohelper.cxx b/toolkit/source/helper/vclunohelper.cxx
index 24ace9ad1ed3..6cec347e390c 100644
--- a/toolkit/source/helper/vclunohelper.cxx
+++ b/toolkit/source/helper/vclunohelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: vclunohelper.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: kz $ $Date: 2003-10-15 09:51:09 $
+ * last change: $Author: rt $ $Date: 2004-07-14 08:30:35 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -442,8 +442,8 @@ Font VCLUnoHelper::CreateFont( const ::com::sun::star::uno::Reference< ::com::su
aFM.Descent = (sal_Int16)rFontMetric.GetDescent();
aFM.Leading = (sal_Int16)rFontMetric.GetIntLeading();
aFM.Slant = (sal_Int16)rFontMetric.GetSlant();
- aFM.FirstChar = rFontMetric.GetFirstChar();
- aFM.LastChar = rFontMetric.GetLastChar();
+ aFM.FirstChar = 0x0020;
+ aFM.LastChar = 0xFFFD;
return aFM;
}