Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
c19c9dfc
Kaydet (Commit)
c19c9dfc
authored
May 22, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
setting max line count should allow extra values to be added later
Change-Id: Ia693c83b8d27cacbd257f81b5eae2936fc5f8a6f
üst
d484b12a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
combobox.cxx
vcl/source/control/combobox.cxx
+1
-1
lstbox.cxx
vcl/source/control/lstbox.cxx
+1
-1
No files found.
vcl/source/control/combobox.cxx
Dosyayı görüntüle @
c19c9dfc
...
...
@@ -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
(
));
}
// -----------------------------------------------------------------------
...
...
vcl/source/control/lstbox.cxx
Dosyayı görüntüle @
c19c9dfc
...
...
@@ -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
(
));
}
// -----------------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment