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
4394c6b9
Kaydet (Commit)
4394c6b9
authored
Nis 17, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#707375 Uncaught exception
Change-Id: I7fc84a17637d6dd4191525e91d49dd4e24bd3a26
üst
cf4f433d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
XFields.idl
oovbaapi/ooo/vba/word/XFields.idl
+1
-1
vbafield.cxx
sw/source/ui/vba/vbafield.cxx
+1
-1
vbafield.hxx
sw/source/ui/vba/vbafield.hxx
+1
-1
No files found.
oovbaapi/ooo/vba/word/XFields.idl
Dosyayı görüntüle @
4394c6b9
...
@@ -31,7 +31,7 @@ interface XFields
...
@@ -31,7 +31,7 @@ interface XFields
{
{
interface
ooo
::
vba
::
XCollection
;
interface
ooo
::
vba
::
XCollection
;
XField
Add
(
[
in
]
XRange
Range
,
[
in
]
any
Type
,
[
in
]
any
Text
,
[
in
]
any
PreserveFormatting
)
;
XField
Add
(
[
in
]
XRange
Range
,
[
in
]
any
Type
,
[
in
]
any
Text
,
[
in
]
any
PreserveFormatting
)
raises
(
com
::
sun
::
star
::
script
::
BasicErrorException
)
;
long
Update
()
;
long
Update
()
;
}
;
}
;
...
...
sw/source/ui/vba/vbafield.cxx
Dosyayı görüntüle @
4394c6b9
...
@@ -310,7 +310,7 @@ SwVbaFields::SwVbaFields( const uno::Reference< XHelperInterface >& xParent, con
...
@@ -310,7 +310,7 @@ SwVbaFields::SwVbaFields( const uno::Reference< XHelperInterface >& xParent, con
}
}
uno
::
Reference
<
word
::
XField
>
SAL_CALL
uno
::
Reference
<
word
::
XField
>
SAL_CALL
SwVbaFields
::
Add
(
const
css
::
uno
::
Reference
<
::
ooo
::
vba
::
word
::
XRange
>&
Range
,
const
css
::
uno
::
Any
&
Type
,
const
css
::
uno
::
Any
&
Text
,
const
css
::
uno
::
Any
&
/*PreserveFormatting*/
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SwVbaFields
::
Add
(
const
css
::
uno
::
Reference
<
::
ooo
::
vba
::
word
::
XRange
>&
Range
,
const
css
::
uno
::
Any
&
Type
,
const
css
::
uno
::
Any
&
Text
,
const
css
::
uno
::
Any
&
/*PreserveFormatting*/
)
throw
(
css
::
script
::
BasicErrorException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
{
sal_Int32
nType
=
word
::
WdFieldType
::
wdFieldEmpty
;
sal_Int32
nType
=
word
::
WdFieldType
::
wdFieldEmpty
;
Type
>>=
nType
;
Type
>>=
nType
;
...
...
sw/source/ui/vba/vbafield.hxx
Dosyayı görüntüle @
4394c6b9
...
@@ -56,7 +56,7 @@ private:
...
@@ -56,7 +56,7 @@ private:
public
:
public
:
SwVbaFields
(
const
css
::
uno
::
Reference
<
ov
::
XHelperInterface
>&
xParent
,
const
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
&
xContext
,
const
css
::
uno
::
Reference
<
css
::
frame
::
XModel
>&
xModel
);
SwVbaFields
(
const
css
::
uno
::
Reference
<
ov
::
XHelperInterface
>&
xParent
,
const
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
&
xContext
,
const
css
::
uno
::
Reference
<
css
::
frame
::
XModel
>&
xModel
);
// XFields
// XFields
virtual
css
::
uno
::
Reference
<
::
ooo
::
vba
::
word
::
XField
>
SAL_CALL
Add
(
const
css
::
uno
::
Reference
<
::
ooo
::
vba
::
word
::
XRange
>&
Range
,
const
css
::
uno
::
Any
&
Type
,
const
css
::
uno
::
Any
&
Text
,
const
css
::
uno
::
Any
&
PreserveFormatting
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
css
::
uno
::
Reference
<
::
ooo
::
vba
::
word
::
XField
>
SAL_CALL
Add
(
const
css
::
uno
::
Reference
<
::
ooo
::
vba
::
word
::
XRange
>&
Range
,
const
css
::
uno
::
Any
&
Type
,
const
css
::
uno
::
Any
&
Text
,
const
css
::
uno
::
Any
&
PreserveFormatting
)
throw
(
css
::
script
::
BasicErrorException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
Update
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
Update
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
// XEnumerationAccess
// XEnumerationAccess
virtual
css
::
uno
::
Type
SAL_CALL
getElementType
()
throw
(
css
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
css
::
uno
::
Type
SAL_CALL
getElementType
()
throw
(
css
::
uno
::
RuntimeException
)
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