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
662d96bc
Kaydet (Commit)
662d96bc
authored
May 20, 2013
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
vcl: all EnableAutoSize methods take a bool.
Change-Id: I6f974d6b82f6bb77996d20219b5c0ceb78596c5c
üst
51207ddd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
combobox.hxx
include/vcl/combobox.hxx
+1
-1
ebbcontrols.cxx
svtools/source/brwbox/ebbcontrols.cxx
+2
-2
vclxtoolkit.cxx
toolkit/source/awt/vclxtoolkit.cxx
+2
-2
combobox.cxx
vcl/source/control/combobox.cxx
+1
-1
No files found.
include/vcl/combobox.hxx
Dosyayı görüntüle @
662d96bc
...
...
@@ -120,7 +120,7 @@ public:
void
SetDropDownLineCount
(
sal_uInt16
nLines
);
sal_uInt16
GetDropDownLineCount
()
const
;
void
EnableAutoSize
(
sal_B
ool
bAuto
);
void
EnableAutoSize
(
b
ool
bAuto
);
sal_Bool
IsAutoSizeEnabled
()
const
{
return
mbDDAutoSize
;
}
void
EnableDDAutoWidth
(
sal_Bool
b
);
...
...
svtools/source/brwbox/ebbcontrols.cxx
Dosyayı görüntüle @
662d96bc
...
...
@@ -44,7 +44,7 @@ namespace svt
ComboBoxControl
::
ComboBoxControl
(
Window
*
pParent
,
WinBits
nWinStyle
)
:
ComboBox
(
pParent
,
nWinStyle
|
WB_DROPDOWN
|
WB_NOBORDER
)
{
EnableAutoSize
(
sal_F
alse
);
EnableAutoSize
(
f
alse
);
EnableAutocomplete
(
sal_True
);
SetDropDownLineCount
(
5
);
}
...
...
@@ -151,7 +151,7 @@ namespace svt
ListBoxControl
::
ListBoxControl
(
Window
*
pParent
,
WinBits
nWinStyle
)
:
ListBox
(
pParent
,
nWinStyle
|
WB_DROPDOWN
|
WB_NOBORDER
)
{
EnableAutoSize
(
sal_F
alse
);
EnableAutoSize
(
f
alse
);
EnableMultiSelection
(
sal_False
);
SetDropDownLineCount
(
20
);
}
...
...
toolkit/source/awt/vclxtoolkit.cxx
Dosyayı görüntüle @
662d96bc
...
...
@@ -634,7 +634,7 @@ Window* VCLXToolkit::ImplCreateWindow( VCLXWindow** ppNewComp,
break
;
case
WINDOW_COMBOBOX
:
pNewWindow
=
new
ComboBox
(
pParent
,
nWinBits
|
WB_AUTOHSCROLL
);
((
ComboBox
*
)
pNewWindow
)
->
EnableAutoSize
(
sal_F
alse
);
((
ComboBox
*
)
pNewWindow
)
->
EnableAutoSize
(
f
alse
);
*
ppNewComp
=
new
VCLXComboBox
;
break
;
case
WINDOW_CURRENCYBOX
:
...
...
@@ -722,7 +722,7 @@ Window* VCLXToolkit::ImplCreateWindow( VCLXWindow** ppNewComp,
break
;
case
WINDOW_LISTBOX
:
pNewWindow
=
new
ListBox
(
pParent
,
nWinBits
|
WB_SIMPLEMODE
|
WB_AUTOHSCROLL
);
((
ListBox
*
)
pNewWindow
)
->
EnableAutoSize
(
sal_F
alse
);
((
ListBox
*
)
pNewWindow
)
->
EnableAutoSize
(
f
alse
);
*
ppNewComp
=
new
VCLXListBox
;
break
;
case
WINDOW_LONGCURRENCYBOX
:
...
...
vcl/source/control/combobox.cxx
Dosyayı görüntüle @
662d96bc
...
...
@@ -531,7 +531,7 @@ void ComboBox::DoubleClick()
// -----------------------------------------------------------------------
void
ComboBox
::
EnableAutoSize
(
sal_B
ool
bAuto
)
void
ComboBox
::
EnableAutoSize
(
b
ool
bAuto
)
{
mbDDAutoSize
=
bAuto
;
if
(
mpFloatWin
)
...
...
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