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
abe5aaa7
Kaydet (Commit)
abe5aaa7
authored
May 28, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#706505 Uncaught exception
Change-Id: Ia00361fb1d86223a7ed65f0be295b291183e3ad6
üst
ddaaeec1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
5 deletions
+10
-5
unonrule.cxx
editeng/source/uno/unonrule.cxx
+2
-1
unonrule.hxx
include/editeng/unonrule.hxx
+2
-1
unotext.hxx
include/editeng/unotext.hxx
+2
-1
ReportDrawPage.hxx
reportdesign/source/core/inc/ReportDrawPage.hxx
+2
-1
ReportDrawPage.cxx
reportdesign/source/core/sdr/ReportDrawPage.cxx
+2
-1
No files found.
editeng/source/uno/unonrule.cxx
Dosyayı görüntüle @
abe5aaa7
...
...
@@ -170,7 +170,8 @@ Sequence< OUString > SAL_CALL SvxUnoNumberingRules::getSupportedServiceNames( )
return
aSeq
;
}
Sequence
<
beans
::
PropertyValue
>
SvxUnoNumberingRules
::
getNumberingRuleByIndex
(
sal_Int32
nIndex
)
const
throw
()
Sequence
<
beans
::
PropertyValue
>
SvxUnoNumberingRules
::
getNumberingRuleByIndex
(
sal_Int32
nIndex
)
const
throw
(
RuntimeException
)
{
// NumberingRule aRule;
const
SvxNumberFormat
&
rFmt
=
maRule
.
GetLevel
((
sal_uInt16
)
nIndex
);
...
...
include/editeng/unonrule.hxx
Dosyayı görüntüle @
abe5aaa7
...
...
@@ -72,7 +72,8 @@ public:
virtual
com
::
sun
::
star
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
(
)
throw
(
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
// internal
com
::
sun
::
star
::
uno
::
Sequence
<
com
::
sun
::
star
::
beans
::
PropertyValue
>
getNumberingRuleByIndex
(
sal_Int32
nIndex
)
const
throw
();
com
::
sun
::
star
::
uno
::
Sequence
<
com
::
sun
::
star
::
beans
::
PropertyValue
>
getNumberingRuleByIndex
(
sal_Int32
nIndex
)
const
throw
(
css
::
uno
::
RuntimeException
);
void
setNumberingRuleByIndex
(
const
com
::
sun
::
star
::
uno
::
Sequence
<
com
::
sun
::
star
::
beans
::
PropertyValue
>&
rProperties
,
sal_Int32
nIndex
)
throw
(
com
::
sun
::
star
::
uno
::
RuntimeException
,
com
::
sun
::
star
::
lang
::
IllegalArgumentException
);
static
sal_Int16
Compare
(
const
com
::
sun
::
star
::
uno
::
Any
&
rAny1
,
const
com
::
sun
::
star
::
uno
::
Any
&
rAny2
);
...
...
include/editeng/unotext.hxx
Dosyayı görüntüle @
abe5aaa7
...
...
@@ -270,7 +270,8 @@ protected:
virtual
void
_setPropertyToDefault
(
SvxTextForwarder
*
pForwarder
,
const
SfxItemPropertySimpleEntry
*
pMap
,
sal_Int32
nPara
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
void
SetEditSource
(
SvxEditSource
*
_pEditSource
)
throw
();
virtual
void
getPropertyValue
(
const
SfxItemPropertySimpleEntry
*
pMap
,
com
::
sun
::
star
::
uno
::
Any
&
rAny
,
const
SfxItemSet
&
rSet
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
);
virtual
void
getPropertyValue
(
const
SfxItemPropertySimpleEntry
*
pMap
,
com
::
sun
::
star
::
uno
::
Any
&
rAny
,
const
SfxItemSet
&
rSet
)
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
uno
::
RuntimeException
);
virtual
void
setPropertyValue
(
const
SfxItemPropertySimpleEntry
*
pMap
,
const
com
::
sun
::
star
::
uno
::
Any
&
rValue
,
const
ESelection
&
rSelection
,
const
SfxItemSet
&
rOldSet
,
SfxItemSet
&
rNewSet
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
);
SvxUnoTextRangeBase
(
const
SvxItemPropertySet
*
_pSet
)
throw
();
...
...
reportdesign/source/core/inc/ReportDrawPage.hxx
Dosyayı görüntüle @
abe5aaa7
...
...
@@ -31,7 +31,8 @@ namespace reportdesign
OReportDrawPage
(
const
OReportDrawPage
&
);
void
operator
=
(
const
OReportDrawPage
&
);
protected
:
virtual
SdrObject
*
_CreateSdrObject
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
drawing
::
XShape
>
&
xShape
)
throw
(
std
::
exception
)
SAL_OVERRIDE
;
virtual
SdrObject
*
_CreateSdrObject
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
drawing
::
XShape
>
&
xShape
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
drawing
::
XShape
>
_CreateShape
(
SdrObject
*
pObj
)
const
throw
(
std
::
exception
)
SAL_OVERRIDE
;
public
:
OReportDrawPage
(
SdrPage
*
pPage
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
report
::
XSection
>&
_xSection
);
...
...
reportdesign/source/core/sdr/ReportDrawPage.cxx
Dosyayı görüntüle @
abe5aaa7
...
...
@@ -46,7 +46,8 @@ OReportDrawPage::OReportDrawPage(SdrPage* _pPage
{
}
SdrObject
*
OReportDrawPage
::
_CreateSdrObject
(
const
uno
::
Reference
<
drawing
::
XShape
>
&
xDescr
)
throw
(
std
::
exception
)
SdrObject
*
OReportDrawPage
::
_CreateSdrObject
(
const
uno
::
Reference
<
drawing
::
XShape
>
&
xDescr
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
uno
::
Reference
<
report
::
XReportComponent
>
xReportComponent
(
xDescr
,
uno
::
UNO_QUERY
);
if
(
xReportComponent
.
is
()
)
...
...
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