summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authormatteocam <matteo.campanelli@gmail.com>2015-08-05 13:29:13 +0200
committermatteocam <matteo.campanelli@gmail.com>2015-08-05 13:29:13 +0200
commit9531a7d36141789d5b4d004758bf11e184f411b7 (patch)
tree38c3a298583ea90e3df330b30cfb66da213f27e4 /svx
parent0cd61255022e054c795baf364b1a0e0ceca9cc76 (diff)
Restore right MaxAutoPaperSize in SdrTextObj::ImpInitDrawOutliner
Change-Id: I51d7b8487bc68e0108b9b2f4ba3c2d4470ec99a1
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdotext.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx
index e61088bd0d64..1c0769e9a3f2 100644
--- a/svx/source/svdraw/svdotext.cxx
+++ b/svx/source/svdraw/svdotext.cxx
@@ -1246,7 +1246,7 @@ void SdrTextObj::ImpInitDrawOutliner( SdrOutliner& rOutl ) const
nStat &= ~EEControlBits(EEControlBits::STRETCHING|EEControlBits::AUTOPAGESIZE);
rOutl.SetControlWord(nStat);
Size aNullSize;
- Size aMaxSize(100000,2418);
+ Size aMaxSize(100000,100000);
rOutl.SetMinAutoPaperSize(aNullSize);
rOutl.SetMaxAutoPaperSize(aMaxSize);
rOutl.SetPaperSize(aMaxSize);