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
fed9b024
Kaydet (Commit)
fed9b024
authored
May 27, 2014
tarafından
Noel Grandin
Kaydeden (comit)
Fridrich Štrba
May 28, 2014
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cid#706962 Uncaught exception
Change-Id: I29a28a13f7cd8f9965db97247bbf377f9937213c
üst
9b5591ed
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
vbaformatcondition.cxx
sc/source/ui/vba/vbaformatcondition.cxx
+10
-1
vbaformatcondition.hxx
sc/source/ui/vba/vbaformatcondition.hxx
+6
-1
No files found.
sc/source/ui/vba/vbaformatcondition.cxx
Dosyayı görüntüle @
fed9b024
...
...
@@ -31,7 +31,16 @@ lcl_getScVbaFormatConditionsPtr( const uno::Reference< excel::XFormatConditions
DebugHelper
::
exception
(
SbERR_METHOD_FAILED
,
OUString
()
);
return
pFormatConditions
;
}
ScVbaFormatCondition
::
ScVbaFormatCondition
(
const
uno
::
Reference
<
XHelperInterface
>&
xParent
,
const
uno
::
Reference
<
uno
::
XComponentContext
>
&
xContext
,
const
uno
::
Reference
<
sheet
::
XSheetConditionalEntry
>&
_xSheetConditionalEntry
,
const
uno
::
Reference
<
excel
::
XStyle
>&
_xStyle
,
const
uno
::
Reference
<
excel
::
XFormatConditions
>&
_xFormatConditions
,
const
uno
::
Reference
<
css
::
beans
::
XPropertySet
>&
_xPropertySet
)
throw
(
css
::
uno
::
RuntimeException
)
:
ScVbaFormatCondition_BASE
(
xParent
,
xContext
,
uno
::
Reference
<
sheet
::
XSheetCondition
>
(
_xSheetConditionalEntry
,
css
::
uno
::
UNO_QUERY_THROW
)
),
moFormatConditions
(
_xFormatConditions
),
mxStyle
(
_xStyle
),
mxParentRangePropertySet
(
_xPropertySet
)
ScVbaFormatCondition
::
ScVbaFormatCondition
(
const
uno
::
Reference
<
XHelperInterface
>&
xParent
,
const
uno
::
Reference
<
uno
::
XComponentContext
>
&
xContext
,
const
uno
::
Reference
<
sheet
::
XSheetConditionalEntry
>&
_xSheetConditionalEntry
,
const
uno
::
Reference
<
excel
::
XStyle
>&
_xStyle
,
const
uno
::
Reference
<
excel
::
XFormatConditions
>&
_xFormatConditions
,
const
uno
::
Reference
<
css
::
beans
::
XPropertySet
>&
_xPropertySet
)
throw
(
css
::
uno
::
RuntimeException
,
css
::
script
::
BasicErrorException
)
:
ScVbaFormatCondition_BASE
(
xParent
,
xContext
,
uno
::
Reference
<
sheet
::
XSheetCondition
>
(
_xSheetConditionalEntry
,
css
::
uno
::
UNO_QUERY_THROW
)
),
moFormatConditions
(
_xFormatConditions
),
mxStyle
(
_xStyle
),
mxParentRangePropertySet
(
_xPropertySet
)
{
mxSheetConditionalEntries
=
lcl_getScVbaFormatConditionsPtr
(
moFormatConditions
)
->
getSheetConditionalEntries
();
...
...
sc/source/ui/vba/vbaformatcondition.hxx
Dosyayı görüntüle @
fed9b024
...
...
@@ -39,7 +39,12 @@ protected:
css
::
uno
::
Reference
<
ov
::
excel
::
XStyle
>
mxStyle
;
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
mxParentRangePropertySet
;
public
:
ScVbaFormatCondition
(
const
css
::
uno
::
Reference
<
ov
::
XHelperInterface
>&
xParent
,
const
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
&
xContext
,
const
css
::
uno
::
Reference
<
css
::
sheet
::
XSheetConditionalEntry
>&
_xSheetConditionalEntry
,
const
css
::
uno
::
Reference
<
ov
::
excel
::
XStyle
>&
,
const
css
::
uno
::
Reference
<
ov
::
excel
::
XFormatConditions
>&
_xFormatConditions
,
const
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>&
_xPropertySet
)
throw
(
css
::
uno
::
RuntimeException
);
ScVbaFormatCondition
(
const
css
::
uno
::
Reference
<
ov
::
XHelperInterface
>&
xParent
,
const
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
&
xContext
,
const
css
::
uno
::
Reference
<
css
::
sheet
::
XSheetConditionalEntry
>&
_xSheetConditionalEntry
,
const
css
::
uno
::
Reference
<
ov
::
excel
::
XStyle
>&
,
const
css
::
uno
::
Reference
<
ov
::
excel
::
XFormatConditions
>&
_xFormatConditions
,
const
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>&
_xPropertySet
)
throw
(
css
::
uno
::
RuntimeException
,
css
::
script
::
BasicErrorException
);
void
notifyRange
()
throw
(
css
::
script
::
BasicErrorException
);
static
css
::
sheet
::
ConditionOperator
retrieveAPIType
(
sal_Int32
_nVBAType
,
const
css
::
uno
::
Reference
<
css
::
sheet
::
XSheetCondition
>&
_xSheetCondition
)
throw
(
css
::
script
::
BasicErrorException
);
...
...
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