summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorHerbert Dürr <hdu@apache.org>2013-12-02 12:33:06 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-12-02 16:49:47 +0000
commitea616972c06dec25b1baeb6b7d674c71c7af52fc (patch)
tree84df9bfe354adf97e0ff30df3a5a21e1a510d777 /basic
parent0a34d4a5af3658be10ea9091096027a159cc7316 (diff)
Resolves: #i74854# fix buttons in MsgBox with info icon
Patch by: hanya.runo@gmail.com Found by: ooo@catcons.co.uk Tested by: hdu@apache.org (cherry picked from commit 02cc651a1b45cbfbdab0aca6b57bff7bdf9e4f2c) Conflicts: basic/source/runtime/methods.cxx vcl/inc/vcl/msgbox.hxx Change-Id: I1656263e189f1a6cfa58436741bfa74ae0e6fffa (cherry picked from commit 3a437baee23d45ab64d557fed75e2e1b14aa5541)
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/methods.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index 083152b63fb0..535160608f70 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -4631,7 +4631,7 @@ RTLFUNC(MsgBox)
pBox = new WarningBox( pParent, nWinBits, aMsg );
break;
case 64:
- pBox = new InfoBox( pParent, aMsg );
+ pBox = new InfoBox( pParent, nWinBits, aMsg );
break;
default:
pBox = new MessBox( pParent, nWinBits, aTitle, aMsg );