summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorZolnai Tamás <zolnaitamas2000@gmail.com>2013-03-09 11:41:54 +0100
committerZolnai Tamás <zolnaitamas2000@gmail.com>2013-03-09 11:59:21 +0100
commit4c52c8bd73bb814a87df2c032faa164f21f9f73e (patch)
tree9afbff770d56a9dacfa46719519b44e80f080032 /dbaccess
parenta16c17b4723bfd6ff69dd154342fa440fc280d50 (diff)
fdo#61794 Allow greater value in LimitBox
Increase the width of LimitBox *on toolbar: 6 digits *in dialog: 10 digits Set maximum value of LimitBox to the max value of Int32 Change-Id: I6fcf0270b474eb46a29ff98ade9cd7ee8ba637f5
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/querydesign/LimitBox.cxx7
-rw-r--r--dbaccess/source/ui/querydesign/limitboxcontroller.cxx2
-rw-r--r--dbaccess/uiconfig/ui/querypropertiesdialog.ui2
3 files changed, 6 insertions, 5 deletions
diff --git a/dbaccess/source/ui/querydesign/LimitBox.cxx b/dbaccess/source/ui/querydesign/LimitBox.cxx
index 36fb191ad6bc..735bfa8d827b 100644
--- a/dbaccess/source/ui/querydesign/LimitBox.cxx
+++ b/dbaccess/source/ui/querydesign/LimitBox.cxx
@@ -42,7 +42,9 @@ LimitBox::LimitBox( Window* pParent, WinBits nStyle )
SetShowTrailingZeros( sal_False );
SetDecimalDigits( 0 );
SetMin( -1 );
- SetMax( 9999 );
+
+ ///Use the maximum value of Int32
+ SetMax( 2147483647 );
LoadDefaultLimits();
Size aSize(
@@ -100,8 +102,7 @@ void LimitBox::ReformatAll()
Size LimitBox::GetOptimalSize() const
{
- Size aSize = NumericBox::GetOptimalSize();
- return Size( aSize.Width() + 20, aSize.Height());
+ return CalcSize(10,1);
}
///Initialize entries
diff --git a/dbaccess/source/ui/querydesign/limitboxcontroller.cxx b/dbaccess/source/ui/querydesign/limitboxcontroller.cxx
index e49dfbcf2bb8..e56f3b3f3c60 100644
--- a/dbaccess/source/ui/querydesign/limitboxcontroller.cxx
+++ b/dbaccess/source/ui/querydesign/limitboxcontroller.cxx
@@ -193,7 +193,7 @@ uno::Reference< awt::XWindow > SAL_CALL LimitBoxController::createItemWindow(
{
SolarMutexGuard aSolarMutexGuard;
m_pLimitBox = new LimitBoxImpl(pParent, this);
- m_pLimitBox->SetSizePixel(m_pLimitBox->GetOptimalSize());
+ m_pLimitBox->SetSizePixel(m_pLimitBox->CalcSize(6,1));
xItemWindow = VCLUnoHelper::GetInterface( m_pLimitBox );
}
diff --git a/dbaccess/uiconfig/ui/querypropertiesdialog.ui b/dbaccess/uiconfig/ui/querypropertiesdialog.ui
index d745c1638f5a..6f55af2facdd 100644
--- a/dbaccess/uiconfig/ui/querypropertiesdialog.ui
+++ b/dbaccess/uiconfig/ui/querypropertiesdialog.ui
@@ -168,7 +168,7 @@
<object class="GtkGrid" id="grid3">
<property name="visible">True</property>
<property name="can_focus">False</property>
- <property name="column_spacing">12</property>
+ <property name="column_spacing">24</property>
<child>
<object class="GtkLabel" id="limit-label">
<property name="visible">True</property>