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
19620f12
Kaydet (Commit)
19620f12
authored
Eyl 15, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sc: sal_Bool -> bool
Change-Id: I3b59c5679ac3d370f62960b9fc26eab4c3fc4873
üst
b730eedf
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
tbinsert.cxx
sc/source/ui/cctrl/tbinsert.cxx
+1
-1
tbinsert.hxx
sc/source/ui/inc/tbinsert.hxx
+1
-1
vbacondition.cxx
sc/source/ui/vba/vbacondition.cxx
+1
-1
vbacondition.hxx
sc/source/ui/vba/vbacondition.hxx
+1
-1
vbaformatcondition.cxx
sc/source/ui/vba/vbaformatcondition.cxx
+2
-2
vbaformatcondition.hxx
sc/source/ui/vba/vbaformatcondition.hxx
+1
-1
No files found.
sc/source/ui/cctrl/tbinsert.cxx
Dosyayı görüntüle @
19620f12
...
...
@@ -98,7 +98,7 @@ SfxPopupWindowType ScTbxInsertCtrl::GetPopupWindowType() const
return
nLastSlotId
?
SFX_POPUPWINDOW_ONTIMEOUT
:
SFX_POPUPWINDOW_ONCLICK
;
}
void
ScTbxInsertCtrl
::
Select
(
sal_B
ool
/* bMod1 */
)
void
ScTbxInsertCtrl
::
Select
(
b
ool
/* bMod1 */
)
{
SfxViewShell
*
pCurSh
(
SfxViewShell
::
Current
()
);
SfxDispatcher
*
pDispatch
(
0
);
...
...
sc/source/ui/inc/tbinsert.hxx
Dosyayı görüntüle @
19620f12
...
...
@@ -27,7 +27,7 @@ class ScTbxInsertCtrl : public SfxToolBoxControl
sal_uInt16
nLastSlotId
;
using
SfxToolBoxControl
::
Select
;
virtual
void
Select
(
sal_B
ool
bMod1
=
false
);
virtual
void
Select
(
b
ool
bMod1
=
false
);
public
:
SFX_DECL_TOOLBOX_CONTROL
();
...
...
sc/source/ui/vba/vbacondition.cxx
Dosyayı görüntüle @
19620f12
...
...
@@ -117,7 +117,7 @@ ScVbaCondition< Ifc1 >::setFormula2( const uno::Any& _aFormula2) throw ( script:
template
<
typename
Ifc1
>
sal_Int32
ScVbaCondition
<
Ifc1
>::
Operator
(
sal_B
ool
_bIncludeFormulaValue
)
throw
(
script
::
BasicErrorException
)
ScVbaCondition
<
Ifc1
>::
Operator
(
b
ool
_bIncludeFormulaValue
)
throw
(
script
::
BasicErrorException
)
{
sal_Int32
retvalue
=
-
1
;
sheet
::
ConditionOperator
aConditionalOperator
=
mxSheetCondition
->
getOperator
();
...
...
sc/source/ui/vba/vbacondition.hxx
Dosyayı görüntüle @
19620f12
...
...
@@ -39,7 +39,7 @@ public:
virtual
OUString
SAL_CALL
Formula2
(
)
throw
(
css
::
script
::
BasicErrorException
,
css
::
uno
::
RuntimeException
);
virtual
void
setFormula1
(
const
css
::
uno
::
Any
&
_aFormula1
)
throw
(
css
::
script
::
BasicErrorException
);
virtual
void
setFormula2
(
const
css
::
uno
::
Any
&
_aFormula2
)
throw
(
css
::
script
::
BasicErrorException
);
virtual
sal_Int32
Operator
(
sal_B
ool
_bIncludeFormulaValue
)
throw
(
css
::
script
::
BasicErrorException
);
virtual
sal_Int32
Operator
(
b
ool
_bIncludeFormulaValue
)
throw
(
css
::
script
::
BasicErrorException
);
virtual
sal_Int32
SAL_CALL
Operator
()
throw
(
css
::
script
::
BasicErrorException
,
css
::
uno
::
RuntimeException
)
=
0
;
};
...
...
sc/source/ui/vba/vbaformatcondition.cxx
Dosyayı görüntüle @
19620f12
...
...
@@ -132,14 +132,14 @@ ScVbaFormatCondition::Type( ) throw ( script::BasicErrorException, uno::Runtime
}
::
sal_Int32
ScVbaFormatCondition
::
Operator
(
sal_B
ool
bVal
)
throw
(
script
::
BasicErrorException
)
ScVbaFormatCondition
::
Operator
(
b
ool
bVal
)
throw
(
script
::
BasicErrorException
)
{
return
ScVbaFormatCondition_BASE
::
Operator
(
bVal
);
}
::
sal_Int32
SAL_CALL
ScVbaFormatCondition
::
Operator
(
)
throw
(
script
::
BasicErrorException
,
uno
::
RuntimeException
)
{
return
ScVbaFormatCondition_BASE
::
Operator
(
sal_T
rue
);
return
ScVbaFormatCondition_BASE
::
Operator
(
t
rue
);
}
void
...
...
sc/source/ui/vba/vbaformatcondition.hxx
Dosyayı görüntüle @
19620f12
...
...
@@ -53,7 +53,7 @@ public:
virtual
void
SAL_CALL
Delete
(
)
throw
(
css
::
script
::
BasicErrorException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
Modify
(
::
sal_Int32
Type
,
const
css
::
uno
::
Any
&
Operator
,
const
css
::
uno
::
Any
&
Formula1
,
const
css
::
uno
::
Any
&
Formula2
)
throw
(
css
::
script
::
BasicErrorException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
::
sal_Int32
SAL_CALL
Type
(
)
throw
(
css
::
script
::
BasicErrorException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
::
sal_Int32
Operator
(
sal_B
ool
)
throw
(
css
::
script
::
BasicErrorException
)
SAL_OVERRIDE
;
virtual
::
sal_Int32
Operator
(
b
ool
)
throw
(
css
::
script
::
BasicErrorException
)
SAL_OVERRIDE
;
virtual
::
sal_Int32
SAL_CALL
Operator
(
)
throw
(
css
::
script
::
BasicErrorException
,
css
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
setFormula1
(
const
css
::
uno
::
Any
&
_aFormula1
)
throw
(
css
::
script
::
BasicErrorException
)
SAL_OVERRIDE
;
virtual
void
setFormula2
(
const
css
::
uno
::
Any
&
_aFormula2
)
throw
(
css
::
script
::
BasicErrorException
)
SAL_OVERRIDE
;
...
...
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