You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.8 KiB
43 lines
1.8 KiB
From ce418f314f4674d9eb9954cc553cc0674ed4a82a Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= <caolanm@redhat.com>
|
|
Date: Wed, 22 May 2013 16:50:18 +0100
|
|
Subject: [PATCH] setting max line count should allow extra values to be added
|
|
later
|
|
|
|
Change-Id: Ia693c83b8d27cacbd257f81b5eae2936fc5f8a6f
|
|
(cherry picked from commit c19c9dfc69b73ae7dbd7d4b9e68ec0a7c7891913)
|
|
---
|
|
vcl/source/control/combobox.cxx | 2 +-
|
|
vcl/source/control/lstbox.cxx | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx
|
|
index 5234a52..e89bc53 100644
|
|
--- a/vcl/source/control/combobox.cxx
|
|
+++ b/vcl/source/control/combobox.cxx
|
|
@@ -569,7 +569,7 @@ void ComboBox::SetDropDownLineCount( sal_uInt16 nLines )
|
|
void ComboBox::AdaptDropDownLineCountToMaximum()
|
|
{
|
|
// adapt to maximum allowed number
|
|
- SetDropDownLineCount(std::min(GetEntryCount(), GetSettings().GetStyleSettings().GetListBoxMaximumLineCount()));
|
|
+ SetDropDownLineCount(GetSettings().GetStyleSettings().GetListBoxMaximumLineCount());
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
diff --git a/vcl/source/control/lstbox.cxx b/vcl/source/control/lstbox.cxx
|
|
index 741558e..31dfde2 100644
|
|
--- a/vcl/source/control/lstbox.cxx
|
|
+++ b/vcl/source/control/lstbox.cxx
|
|
@@ -593,7 +593,7 @@ void ListBox::SetDropDownLineCount( sal_uInt16 nLines )
|
|
void ListBox::AdaptDropDownLineCountToMaximum()
|
|
{
|
|
// adapt to maximum allowed number
|
|
- SetDropDownLineCount(std::min(GetEntryCount(), GetSettings().GetStyleSettings().GetListBoxMaximumLineCount()));
|
|
+ SetDropDownLineCount(GetSettings().GetStyleSettings().GetListBoxMaximumLineCount());
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
--
|
|
1.8.1.4
|
|
|