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
70629612
Kaydet (Commit)
70629612
authored
Nis 23, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#707371 Uncaught exception
Change-Id: I5b1de7ec2060aa4083a07c2ce250b47d798155f7
üst
0bab690a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
XDocument.idl
oovbaapi/ooo/vba/word/XDocument.idl
+1
-1
vbadocument.cxx
sw/source/ui/vba/vbadocument.cxx
+2
-1
vbadocument.hxx
sw/source/ui/vba/vbadocument.hxx
+2
-1
No files found.
oovbaapi/ooo/vba/word/XDocument.idl
Dosyayı görüntüle @
70629612
...
...
@@ -36,7 +36,7 @@ interface XDocument : com::sun::star::script::XInvocation
[
attribute
]
long
HyphenationZone
;
[
attribute
]
long
ConsecutiveHyphensLimit
;
XRange
Range
(
[
in
]
any
Start
,
[
in
]
any
End
)
;
XRange
Range
(
[
in
]
any
Start
,
[
in
]
any
End
)
raises
(
com
::
sun
::
star
::
script
::
BasicErrorException
)
;
any
BuiltInDocumentProperties
(
[
in
]
any
Index
)
;
any
CustomDocumentProperties
(
[
in
]
any
Index
)
;
any
Bookmarks
(
[
in
]
any
Index
)
;
...
...
sw/source/ui/vba/vbadocument.cxx
Dosyayı görüntüle @
70629612
...
...
@@ -81,7 +81,8 @@ SwVbaDocument::getContent() throw ( uno::RuntimeException, std::exception )
}
uno
::
Reference
<
word
::
XRange
>
SAL_CALL
SwVbaDocument
::
Range
(
const
uno
::
Any
&
rStart
,
const
uno
::
Any
&
rEnd
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
SwVbaDocument
::
Range
(
const
uno
::
Any
&
rStart
,
const
uno
::
Any
&
rEnd
)
throw
(
css
::
script
::
BasicErrorException
,
uno
::
RuntimeException
,
std
::
exception
)
{
if
(
!
rStart
.
hasValue
()
&&
!
rEnd
.
hasValue
()
)
return
getContent
();
...
...
sw/source/ui/vba/vbadocument.hxx
Dosyayı görüntüle @
70629612
...
...
@@ -42,7 +42,8 @@ public:
// XDocument
virtual
css
::
uno
::
Reference
<
ooo
::
vba
::
word
::
XRange
>
SAL_CALL
getContent
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
css
::
uno
::
Reference
<
ooo
::
vba
::
word
::
XRange
>
SAL_CALL
Range
(
const
css
::
uno
::
Any
&
rStart
,
const
css
::
uno
::
Any
&
rEnd
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
css
::
uno
::
Reference
<
ooo
::
vba
::
word
::
XRange
>
SAL_CALL
Range
(
const
css
::
uno
::
Any
&
rStart
,
const
css
::
uno
::
Any
&
rEnd
)
throw
(
css
::
script
::
BasicErrorException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
css
::
uno
::
Any
SAL_CALL
BuiltInDocumentProperties
(
const
css
::
uno
::
Any
&
index
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
css
::
uno
::
Any
SAL_CALL
CustomDocumentProperties
(
const
css
::
uno
::
Any
&
index
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
css
::
uno
::
Any
SAL_CALL
Bookmarks
(
const
css
::
uno
::
Any
&
rIndex
)
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