summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vcl/inc/svdata.hxx3
-rw-r--r--vcl/source/app/svdata.cxx6
-rw-r--r--vcl/source/app/svmain.cxx6
3 files changed, 0 insertions, 15 deletions
diff --git a/vcl/inc/svdata.hxx b/vcl/inc/svdata.hxx
index 3f2ad238c84d..5a8dfb6541d7 100644
--- a/vcl/inc/svdata.hxx
+++ b/vcl/inc/svdata.hxx
@@ -93,7 +93,6 @@ class VclEventListeners2;
class SalData;
namespace vcl { class DisplayConnection; class SettingsConfigItem; class DeleteOnDeinitBase; }
-namespace utl { class DefaultFontConfiguration; class FontSubstConfiguration; }
class LocaleConfigurationListener : public utl::ConfigurationListener
{
@@ -176,8 +175,6 @@ struct ImplSVGDIData
long mnAppFontX; // AppFont X-Numenator for 40/tel Width + DialogScaleX
long mnAppFontY; // AppFont Y-Numenator for 80/tel Height
sal_Bool mbFontSubChanged; // sal_True: FontSubstitution was changed between Begin/End
- utl::DefaultFontConfiguration* mpDefaultFontConfiguration;
- utl::FontSubstConfiguration* mpFontSubstConfiguration;
bool mbNativeFontConfig; // true: do not override UI font
bool mbNoXORClipping; // true: do not use XOR to achieve clipping effects
};
diff --git a/vcl/source/app/svdata.cxx b/vcl/source/app/svdata.cxx
index d32633568373..4ba786009cb0 100644
--- a/vcl/source/app/svdata.cxx
+++ b/vcl/source/app/svdata.cxx
@@ -27,7 +27,6 @@
#include <tools/debug.hxx>
#include <tools/resary.hxx>
#include <tools/gen.hxx>
-#include <unotools/fontcfg.hxx>
#include <cppuhelper/implbase1.hxx>
#include <uno/current_context.hxx>
@@ -102,11 +101,6 @@ void ImplDeInitSVData()
if( pSVData->mpDockingManager )
delete pSVData->mpDockingManager;
- if( pSVData->maGDIData.mpDefaultFontConfiguration )
- delete pSVData->maGDIData.mpDefaultFontConfiguration;
- if( pSVData->maGDIData.mpFontSubstConfiguration )
- delete pSVData->maGDIData.mpFontSubstConfiguration;
-
if( pSVData->maCtrlData.mpFieldUnitStrings )
delete pSVData->maCtrlData.mpFieldUnitStrings, pSVData->maCtrlData.mpFieldUnitStrings = NULL;
if( pSVData->maCtrlData.mpCleanUnitStrings )
diff --git a/vcl/source/app/svmain.cxx b/vcl/source/app/svmain.cxx
index 96962c1578b9..7acd92f10dfa 100644
--- a/vcl/source/app/svmain.cxx
+++ b/vcl/source/app/svmain.cxx
@@ -30,8 +30,6 @@
#include "comphelper/processfactory.hxx"
#include "unotools/syslocaleoptions.hxx"
-#include "unotools/fontcfg.hxx"
-
#include "vcl/svapp.hxx"
#include "vcl/wrkwin.hxx"
#include "vcl/cvtgrf.hxx"
@@ -401,10 +399,6 @@ void DeInitVCL()
if( pSVData->mpSettingsConfigItem )
delete pSVData->mpSettingsConfigItem, pSVData->mpSettingsConfigItem = NULL;
- if( pSVData->maGDIData.mpDefaultFontConfiguration )
- delete pSVData->maGDIData.mpDefaultFontConfiguration, pSVData->maGDIData.mpDefaultFontConfiguration = NULL;
- if( pSVData->maGDIData.mpFontSubstConfiguration )
- delete pSVData->maGDIData.mpFontSubstConfiguration, pSVData->maGDIData.mpFontSubstConfiguration = NULL;
if ( pSVData->maAppData.mpIdleMgr )
delete pSVData->maAppData.mpIdleMgr;