[Libreoffice-commits] core.git: vcl/source

Siqi LIU me at siqi.fr
Fri Jan 3 15:10:05 PST 2014


 vcl/source/control/field.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit d6fdb0b4666fa92c937593a704ef40348803ff62
Author: Siqi LIU <me at siqi.fr>
Date:   Sat Jan 4 00:08:27 2014 +0100

    fdo#72666 fix for brocken NumericBox constructor
    
    Change-Id: I6c9a981f8de35314edb51cc5f0fc11adfe6c1b5b

diff --git a/vcl/source/control/field.cxx b/vcl/source/control/field.cxx
index 26d3cff..aa8e06b 100644
--- a/vcl/source/control/field.cxx
+++ b/vcl/source/control/field.cxx
@@ -889,6 +889,8 @@ NumericBox::NumericBox( Window* pParent, WinBits nWinStyle ) :
 {
     SetField( this );
     Reformat();
+    if ( !(nWinStyle & WB_HIDE ) )
+        Show();
 }
 
 NumericBox::NumericBox( Window* pParent, const ResId& rResId ) :


More information about the Libreoffice-commits mailing list