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
3fa329f6
Kaydet (Commit)
3fa329f6
authored
Agu 31, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#707382 Uncaught exception
Change-Id: Idad4fbff404c23b74a83c2d3e745363c52c3d90a
üst
9ed8e1f1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
XParagraphFormat.idl
oovbaapi/ooo/vba/word/XParagraphFormat.idl
+5
-2
vbaparagraphformat.cxx
sw/source/ui/vba/vbaparagraphformat.cxx
+1
-1
vbaparagraphformat.hxx
sw/source/ui/vba/vbaparagraphformat.hxx
+1
-1
No files found.
oovbaapi/ooo/vba/word/XParagraphFormat.idl
Dosyayı görüntüle @
3fa329f6
...
...
@@ -20,16 +20,19 @@
#
define
__ooo_vba_word_XParagraphFormat_idl__
#
include
<
com
/
sun
/
star
/
uno
/
XInterface
.
idl>
#
include
<
com
/
sun
/
star
/
script
/
BasicErrorException
.
idl>
#
include
<
ooo
/
vba
/
XHelperInterface
.
idl>
module
ooo
{
module
vba
{
module
word
{
interface
XParagraphFormat
{
interface
ooo
::
vba
::
XHelperInterface
;
[
attribute
]
long
Alignment
;
[
attribute
]
long
Alignment
{
get
raises
(
com
::
sun
::
star
::
script
::
BasicErrorException
)
;
}
;
[
attribute
]
float
FirstLineIndent
;
[
attribute
]
any
KeepTogether
;
[
attribute
]
any
KeepWithNext
;
...
...
sw/source/ui/vba/vbaparagraphformat.cxx
Dosyayı görüntüle @
3fa329f6
...
...
@@ -44,7 +44,7 @@ SwVbaParagraphFormat::~SwVbaParagraphFormat()
{
}
sal_Int32
SAL_CALL
SwVbaParagraphFormat
::
getAlignment
()
throw
(
uno
::
RuntimeException
,
std
::
exception
)
sal_Int32
SAL_CALL
SwVbaParagraphFormat
::
getAlignment
()
throw
(
uno
::
RuntimeException
,
css
::
script
::
BasicErrorException
,
std
::
exception
)
{
style
::
ParagraphAdjust
aParaAdjust
=
style
::
ParagraphAdjust_LEFT
;
mxParaProps
->
getPropertyValue
(
"ParaAdjust"
)
>>=
aParaAdjust
;
...
...
sw/source/ui/vba/vbaparagraphformat.hxx
Dosyayı görüntüle @
3fa329f6
...
...
@@ -47,7 +47,7 @@ public:
virtual
~
SwVbaParagraphFormat
();
// Attributes
virtual
::
sal_Int32
SAL_CALL
getAlignment
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
::
sal_Int32
SAL_CALL
getAlignment
()
throw
(
css
::
uno
::
RuntimeException
,
css
::
script
::
BasicErrorException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setAlignment
(
::
sal_Int32
_alignment
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
float
SAL_CALL
getFirstLineIndent
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setFirstLineIndent
(
float
_firstlineindent
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
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