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

Zolnai Tamás zolnaitamas2000 at gmail.com
Wed Mar 27 06:31:09 PDT 2013


 dbaccess/source/ui/querydesign/LimitBox.cxx |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit 6c6adf5b46ce52b6d1ada11c0ddc03cedb675e88
Author: Zolnai Tamás <zolnaitamas2000 at gmail.com>
Date:   Wed Mar 27 14:26:32 2013 +0100

    fdo#61794 Set maximum of LimitBox to SAL_MAX_INT64
    
    Change-Id: I1744c7f8f1d6d27d3e62feb0cade1280fea331f1

diff --git a/dbaccess/source/ui/querydesign/LimitBox.cxx b/dbaccess/source/ui/querydesign/LimitBox.cxx
index 3a25f40..9556f81 100644
--- a/dbaccess/source/ui/querydesign/LimitBox.cxx
+++ b/dbaccess/source/ui/querydesign/LimitBox.cxx
@@ -37,9 +37,7 @@ LimitBox::LimitBox( Window* pParent, WinBits nStyle )
     SetShowTrailingZeros( sal_False );
     SetDecimalDigits( 0 );
     SetMin( -1 );
-
-    ///Use the maximum value of Int32
-    SetMax( 2147483647 );
+    SetMax( SAL_MAX_INT64 );
     LoadDefaultLimits();
 
     Size aSize(


More information about the Libreoffice-commits mailing list