summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Power <noel.power@suse.com>2012-12-12 09:21:22 +0000
committerNoel Power <noel.power@suse.com>2012-12-12 09:21:22 +0000
commitdd86ce1814588d6bb8fdc4b1e0b165f013e223f5 (patch)
tree941bcd1c354dc8589dd85a350240f11c4e66f6f3 /svx
parentf1e1c2013dc068cad4f860bd2e04a2ec011973e0 (diff)
even bodgy-er workaround for a core
please note if you are reading this commit that this is a change on a private branch and not something intended to be committed as a *real* fix Change-Id: I15c49e9282f733268d43f590a4c82bd69a54bd19
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdetc.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdetc.cxx b/svx/source/svdraw/svdetc.cxx
index c561e82f5895..4cd85e8a9db8 100644
--- a/svx/source/svdraw/svdetc.cxx
+++ b/svx/source/svdraw/svdetc.cxx
@@ -107,7 +107,8 @@ const LocaleDataWrapper* SdrGlobalData::GetLocaleData()
OLEObjCache::OLEObjCache()
: Container( 0 )
{
- nSize = officecfg::Office::Common::Cache::DrawingEngine::OLE_Objects::get();
+ // add fudge factor to avoid core ( not meant for comitting to any real branch )
+ nSize = officecfg::Office::Common::Cache::DrawingEngine::OLE_Objects::get() + 10;
pTimer = new AutoTimer();
Link aLink = LINK(this, OLEObjCache, UnloadCheckHdl);