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
6fb5bf52
Kaydet (Commit)
6fb5bf52
authored
Eyl 12, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fpicker: sal_Bool -> bool
Change-Id: Iaf55e2106900be0319c96861b07abea24075bbbe
üst
102c2413
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
11 deletions
+11
-11
OfficeControlAccess.cxx
fpicker/source/office/OfficeControlAccess.cxx
+3
-3
iodlg.cxx
fpicker/source/office/iodlg.cxx
+4
-4
iodlg.hxx
fpicker/source/office/iodlg.hxx
+2
-2
pickercallbacks.hxx
fpicker/source/office/pickercallbacks.hxx
+2
-2
No files found.
fpicker/source/office/OfficeControlAccess.cxx
Dosyayı görüntüle @
6fb5bf52
...
...
@@ -397,7 +397,7 @@ namespace svt
{
Any
aRet
;
Control
*
pControl
=
m_pFilePickerController
->
getControl
(
_nControlId
,
sal_F
alse
);
Control
*
pControl
=
m_pFilePickerController
->
getControl
(
_nControlId
,
f
alse
);
DBG_ASSERT
(
pControl
,
"OControlAccess::GetValue: don't have this control in the current mode!"
);
if
(
pControl
)
{
...
...
@@ -463,7 +463,7 @@ namespace svt
void
OControlAccess
::
setLabel
(
sal_Int16
nId
,
const
OUString
&
rLabel
)
{
Control
*
pControl
=
m_pFilePickerController
->
getControl
(
nId
,
sal_T
rue
);
Control
*
pControl
=
m_pFilePickerController
->
getControl
(
nId
,
t
rue
);
DBG_ASSERT
(
pControl
,
"OControlAccess::GetValue: don't have this control in the current mode!"
);
if
(
pControl
)
pControl
->
SetText
(
rLabel
);
...
...
@@ -474,7 +474,7 @@ namespace svt
{
OUString
sLabel
;
Control
*
pControl
=
m_pFilePickerController
->
getControl
(
nId
,
sal_T
rue
);
Control
*
pControl
=
m_pFilePickerController
->
getControl
(
nId
,
t
rue
);
DBG_ASSERT
(
pControl
,
"OControlAccess::GetValue: don't have this control in the current mode!"
);
if
(
pControl
)
sLabel
=
pControl
->
GetText
();
...
...
fpicker/source/office/iodlg.cxx
Dosyayı görüntüle @
6fb5bf52
...
...
@@ -2366,7 +2366,7 @@ void SvtFileDialog::Resize()
_pFileNotifier
->
notify
(
DIALOG_SIZE_CHANGED
,
0
);
}
Control
*
SvtFileDialog
::
getControl
(
sal_Int16
_nControlId
,
sal_B
ool
_bLabelControl
)
const
Control
*
SvtFileDialog
::
getControl
(
sal_Int16
_nControlId
,
b
ool
_bLabelControl
)
const
{
Control
*
pReturn
=
NULL
;
...
...
@@ -2491,12 +2491,12 @@ Control* SvtFileDialog::getControl( sal_Int16 _nControlId, sal_Bool _bLabelContr
}
void
SvtFileDialog
::
enableControl
(
sal_Int16
_nControlId
,
sal_B
ool
_bEnable
)
void
SvtFileDialog
::
enableControl
(
sal_Int16
_nControlId
,
b
ool
_bEnable
)
{
Control
*
pControl
=
getControl
(
_nControlId
,
sal_F
alse
);
Control
*
pControl
=
getControl
(
_nControlId
,
f
alse
);
if
(
pControl
)
EnableControl
(
pControl
,
_bEnable
);
Control
*
pLabel
=
getControl
(
_nControlId
,
sal_T
rue
);
Control
*
pLabel
=
getControl
(
_nControlId
,
t
rue
);
if
(
pLabel
)
EnableControl
(
pLabel
,
_bEnable
);
}
...
...
fpicker/source/office/iodlg.hxx
Dosyayı görüntüle @
6fb5bf52
...
...
@@ -298,8 +298,8 @@ private:
sal_uInt16
adjustFilter
(
const
OUString
&
_rFilter
);
// IFilePickerController, needed by OControlAccess
virtual
Control
*
getControl
(
sal_Int16
_nControlId
,
sal_Bool
_bLabelControl
=
sal_F
alse
)
const
SAL_OVERRIDE
;
virtual
void
enableControl
(
sal_Int16
_nControlId
,
sal_B
ool
_bEnable
)
SAL_OVERRIDE
;
virtual
Control
*
getControl
(
sal_Int16
_nControlId
,
bool
_bLabelControl
=
f
alse
)
const
SAL_OVERRIDE
;
virtual
void
enableControl
(
sal_Int16
_nControlId
,
b
ool
_bEnable
)
SAL_OVERRIDE
;
virtual
OUString
getCurFilter
(
)
const
SAL_OVERRIDE
;
OUString
implGetInitialURL
(
const
OUString
&
_rPath
,
const
OUString
&
_rFallback
);
...
...
fpicker/source/office/pickercallbacks.hxx
Dosyayı görüntüle @
6fb5bf52
...
...
@@ -34,8 +34,8 @@ namespace svt
class
IFilePickerController
{
public
:
virtual
Control
*
getControl
(
sal_Int16
_nControlId
,
sal_Bool
_bLabelControl
=
sal_F
alse
)
const
=
0
;
virtual
void
enableControl
(
sal_Int16
_nControlId
,
sal_B
ool
_bEnable
)
=
0
;
virtual
Control
*
getControl
(
sal_Int16
_nControlId
,
bool
_bLabelControl
=
f
alse
)
const
=
0
;
virtual
void
enableControl
(
sal_Int16
_nControlId
,
b
ool
_bEnable
)
=
0
;
virtual
OUString
getCurFilter
(
)
const
=
0
;
protected
:
...
...
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