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
e2ae9f3e
Kaydet (Commit)
e2ae9f3e
authored
Haz 13, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#707393 Uncaught exception
Change-Id: I89ea074bacf7884fe8b8471cfd208f643326a7e1
üst
4a662ef7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
XRange.idl
oovbaapi/ooo/vba/word/XRange.idl
+1
-1
vbarange.cxx
sw/source/ui/vba/vbarange.cxx
+2
-1
vbarange.hxx
sw/source/ui/vba/vbarange.hxx
+4
-1
No files found.
oovbaapi/ooo/vba/word/XRange.idl
Dosyayı görüntüle @
e2ae9f3e
...
@@ -46,7 +46,7 @@ interface XRange
...
@@ -46,7 +46,7 @@ interface XRange
[
attribute
]
long
End
;
[
attribute
]
long
End
;
[
attribute
,
readonly
]
XListFormat
ListFormat
;
[
attribute
,
readonly
]
XListFormat
ListFormat
;
void
InsertBreak
(
[
in
]
any
Type
)
;
void
InsertBreak
(
[
in
]
any
Type
)
raises
(
com
::
sun
::
star
::
script
::
BasicErrorException
)
;
void
Select
()
;
void
Select
()
;
void
InsertParagraph
()
;
void
InsertParagraph
()
;
void
InsertParagraphBefore
()
;
void
InsertParagraphBefore
()
;
...
...
sw/source/ui/vba/vbarange.cxx
Dosyayı görüntüle @
e2ae9f3e
...
@@ -168,7 +168,8 @@ SwVbaRange::setText( const OUString& rText ) throw ( uno::RuntimeException, std:
...
@@ -168,7 +168,8 @@ SwVbaRange::setText( const OUString& rText ) throw ( uno::RuntimeException, std:
}
}
// FIXME: test is not pass
// FIXME: test is not pass
void
SAL_CALL
SwVbaRange
::
InsertBreak
(
const
uno
::
Any
&
_breakType
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
void
SAL_CALL
SwVbaRange
::
InsertBreak
(
const
uno
::
Any
&
_breakType
)
throw
(
css
::
script
::
BasicErrorException
,
uno
::
RuntimeException
,
std
::
exception
)
{
{
// default type is wdPageBreak;
// default type is wdPageBreak;
sal_Int32
nBreakType
=
word
::
WdBreakType
::
wdPageBreak
;
sal_Int32
nBreakType
=
word
::
WdBreakType
::
wdPageBreak
;
...
...
sw/source/ui/vba/vbarange.hxx
Dosyayı görüntüle @
e2ae9f3e
...
@@ -66,7 +66,10 @@ public:
...
@@ -66,7 +66,10 @@ public:
virtual
css
::
uno
::
Reference
<
ooo
::
vba
::
word
::
XFont
>
SAL_CALL
getFont
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
css
::
uno
::
Reference
<
ooo
::
vba
::
word
::
XFont
>
SAL_CALL
getFont
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
css
::
uno
::
Reference
<
ooo
::
vba
::
word
::
XListFormat
>
SAL_CALL
getListFormat
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
css
::
uno
::
Reference
<
ooo
::
vba
::
word
::
XListFormat
>
SAL_CALL
getListFormat
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
// Methods
// Methods
virtual
void
SAL_CALL
InsertBreak
(
const
css
::
uno
::
Any
&
_breakType
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
InsertBreak
(
const
css
::
uno
::
Any
&
_breakType
)
throw
(
css
::
script
::
BasicErrorException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
Select
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
Select
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
InsertParagraph
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
InsertParagraph
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
InsertParagraphBefore
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
InsertParagraphBefore
()
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