summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorZolnai Tamás <tamas.zolnai@collabora.com>2014-12-03 02:14:26 +0100
committerZolnai Tamás <tamas.zolnai@collabora.com>2014-12-03 14:07:06 +0100
commit3bde660f7c0d3fca42b1a431c644cf86d2c5ade8 (patch)
treee40a41a7d1ad9b39c5f57f74e2bb74010a61a07c /cui
parent8ee17eb341aaa4285d6a1fb6cdb54214379b63ec (diff)
Add a limit for graphic cache based on used integer type to avoid overflow
Change-Id: Ibdf2cbf3c50f6732301d894d91a1b8ea58e4e5d6 (cherry picked from commit f20043a0805c3a75eb4024ed59f45291aea93ac0)
Diffstat (limited to 'cui')
-rw-r--r--cui/source/options/optmemory.cxx2
-rw-r--r--cui/uiconfig/ui/optmemorypage.ui8
2 files changed, 2 insertions, 8 deletions
diff --git a/cui/source/options/optmemory.cxx b/cui/source/options/optmemory.cxx
index 34f0975b78af..2faa4ea7bda4 100644
--- a/cui/source/options/optmemory.cxx
+++ b/cui/source/options/optmemory.cxx
@@ -57,6 +57,7 @@
#include <cuires.hrc>
#include "helpid.hrc"
#include <dialmgr.hxx>
+#include <limits>
#include <config_vclplug.h>
@@ -115,6 +116,7 @@ OfaMemoryOptionsPage::OfaMemoryOptionsPage(vcl::Window* pParent, const SfxItemSe
{
get(m_pUndoEdit, "undo");
get(m_pNfGraphicCache, "graphiccache");
+ m_pNfGraphicCache->SetMax(std::numeric_limits< long >::max() >> 20);
get(m_pNfGraphicObjectCache, "objectcache");
get(m_pTfGraphicObjectTime,"objecttime");
get(m_pNfOLECache, "olecache");
diff --git a/cui/uiconfig/ui/optmemorypage.ui b/cui/uiconfig/ui/optmemorypage.ui
index d17f5ea9ae27..b32f461b9eee 100644
--- a/cui/uiconfig/ui/optmemorypage.ui
+++ b/cui/uiconfig/ui/optmemorypage.ui
@@ -23,13 +23,6 @@
<property name="step_increment">1</property>
<property name="page_increment">10</property>
</object>
- <object class="GtkAdjustment" id="adjustment4">
- <property name="lower">1</property>
- <property name="upper">4096</property>
- <property name="value">1</property>
- <property name="step_increment">1</property>
- <property name="page_increment">10</property>
- </object>
<object class="GtkBox" id="OptMemoryPage">
<property name="visible">True</property>
<property name="can_focus">False</property>
@@ -189,7 +182,6 @@
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="invisible_char">•</property>
- <property name="adjustment">adjustment4</property>
</object>
<packing>
<property name="left_attach">1</property>