summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2003-09-04 06:43:57 +0000
committerOliver Bolte <obo@openoffice.org>2003-09-04 06:43:57 +0000
commit0ad3a0183ec7cfb8c80425298dd6685abc8f54be (patch)
tree69fdaada0b83b2d6cdd25da634ea1686d21bb176 /toolkit
parent9e387327f5e09ae485dccce1f5aad32b21ef58ba (diff)
INTEGRATION: CWS mt801 (1.6.152); FILE MERGED
2003/08/29 16:19:56 mt 1.6.152.1: #109543# Remove SMART_UNO_GENERATION code
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/helper/vclunohelper.cxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/toolkit/source/helper/vclunohelper.cxx b/toolkit/source/helper/vclunohelper.cxx
index 4043d2707cf8..dda7e6f0f3c8 100644
--- a/toolkit/source/helper/vclunohelper.cxx
+++ b/toolkit/source/helper/vclunohelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: vclunohelper.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: pb $ $Date: 2002-03-22 08:35:27 $
+ * last change: $Author: obo $ $Date: 2003-09-04 07:43:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,8 +59,6 @@
*
************************************************************************/
-#define SMART_UNO_GENERATION // Fuer Methoden an der FontMetric
-
#include <tools/debug.hxx>
#include <tools/stream.hxx>
#include <vcl/bitmap.hxx>
@@ -444,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.GetLeading();
aFM.Slant = (sal_Int16)rFontMetric.GetSlant();
- aFM.FirstChar = rFontMetric.getFirstChar();
- aFM.LastChar = rFontMetric.getLastChar();
+ aFM.FirstChar = rFontMetric.GetFirstChar();
+ aFM.LastChar = rFontMetric.GetLastChar();
return aFM;
}