diff options
author | Christian Lippka <cl@openoffice.org> | 2001-06-29 12:31:44 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2001-06-29 12:31:44 +0000 |
commit | c900053ec1253f6a36b62aa20a13756fdf97aaab (patch) | |
tree | 828fca949185f3e5c33f15ec614bc353ab22ba48 /svx/source/svdraw/svdmodel.cxx | |
parent | d44a55202dbe515782d31d8bd3bae9e39f049e39 (diff) |
#87795# don't use SvxAsianConfig for player
Diffstat (limited to 'svx/source/svdraw/svdmodel.cxx')
-rw-r--r-- | svx/source/svdraw/svdmodel.cxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdmodel.cxx b/svx/source/svdraw/svdmodel.cxx index 3b548b277566..82e7cceb4aaf 100644 --- a/svx/source/svdraw/svdmodel.cxx +++ b/svx/source/svdraw/svdmodel.cxx @@ -2,9 +2,9 @@ * * $RCSfile: svdmodel.cxx,v $ * - * $Revision: 1.29 $ + * $Revision: 1.30 $ * - * last change: $Author: nn $ $Date: 2001-06-25 20:13:49 $ + * last change: $Author: cl $ $Date: 2001-06-29 13:31:44 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -96,9 +96,11 @@ #include <eeitemid.hxx> +#ifndef SVX_LIGHT #ifndef _SVX_ASIANCFG_HXX #include "asiancfg.hxx" #endif +#endif #ifndef _SVX_FONTITEM_HXX //autogen #include "fontitem.hxx" @@ -343,8 +345,12 @@ void SdrModel::ImpCtor(SfxItemPool* pPool, SvPersist* pPers, mpForbiddenCharactersTable = NULL; mbModelLocked = FALSE; +#ifndef SVX_LIGHT SvxAsianConfig aAsian; mnCharCompressType = aAsian.GetCharDistanceCompression(); +#else + mnCharCompressType = 0; +#endif #ifdef __LITTLEENDIAN nStreamNumberFormat=NUMBERFORMAT_INT_LITTLEENDIAN; |