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
64da31ab
Kaydet (Commit)
64da31ab
authored
May 24, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#738462 Uncaught exception
Change-Id: I1450211333d2c04cacc80bc66eb228d5c2e7281d
üst
b2011604
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
8 deletions
+7
-8
XTabStops.idl
oovbaapi/ooo/vba/word/XTabStops.idl
+2
-6
vbatabstops.cxx
sw/source/ui/vba/vbatabstops.cxx
+1
-1
vbatabstops.hxx
sw/source/ui/vba/vbatabstops.hxx
+4
-1
No files found.
oovbaapi/ooo/vba/word/XTabStops.idl
Dosyayı görüntüle @
64da31ab
...
@@ -20,21 +20,17 @@
...
@@ -20,21 +20,17 @@
#
define
__ooo_vba_word_XTabStops_idl__
#
define
__ooo_vba_word_XTabStops_idl__
#
include
<
com
/
sun
/
star
/
uno
/
XInterface
.
idl>
#
include
<
com
/
sun
/
star
/
uno
/
XInterface
.
idl>
#
include
<
com
/
sun
/
star
/
script
/
BasicErrorException
.
idl>
#
include
<
ooo
/
vba
/
XCollection
.
idl>
#
include
<
ooo
/
vba
/
XCollection
.
idl>
module
ooo
{
module
vba
{
module
word
{
module
ooo
{
module
vba
{
module
word
{
interface
XTabStop
;
interface
XTabStop
;
interface
XTabStops
interface
XTabStops
{
{
interface
::
ooo
::
vba
::
XCollection
;
interface
::
ooo
::
vba
::
XCollection
;
XTabStop
Add
(
[
in
]
float
Position
,
[
in
]
any
Alignment
,
[
in
]
any
Leader
)
;
XTabStop
Add
(
[
in
]
float
Position
,
[
in
]
any
Alignment
,
[
in
]
any
Leader
)
raises
(
com
::
sun
::
star
::
script
::
BasicErrorException
)
;
void
ClearAll
()
;
void
ClearAll
()
;
}
;
}
;
...
...
sw/source/ui/vba/vbatabstops.cxx
Dosyayı görüntüle @
64da31ab
...
@@ -110,7 +110,7 @@ SwVbaTabStops::SwVbaTabStops( const uno::Reference< XHelperInterface >& xParent,
...
@@ -110,7 +110,7 @@ SwVbaTabStops::SwVbaTabStops( const uno::Reference< XHelperInterface >& xParent,
{
{
}
}
uno
::
Reference
<
word
::
XTabStop
>
SAL_CALL
SwVbaTabStops
::
Add
(
float
Position
,
const
uno
::
Any
&
Alignment
,
const
uno
::
Any
&
Leader
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
uno
::
Reference
<
word
::
XTabStop
>
SAL_CALL
SwVbaTabStops
::
Add
(
float
Position
,
const
uno
::
Any
&
Alignment
,
const
uno
::
Any
&
Leader
)
throw
(
script
::
BasicErrorException
,
uno
::
RuntimeException
,
std
::
exception
)
{
{
sal_Int32
nPosition
=
Millimeter
::
getInHundredthsOfOneMillimeter
(
Position
);
sal_Int32
nPosition
=
Millimeter
::
getInHundredthsOfOneMillimeter
(
Position
);
...
...
sw/source/ui/vba/vbatabstops.hxx
Dosyayı görüntüle @
64da31ab
...
@@ -38,7 +38,10 @@ public:
...
@@ -38,7 +38,10 @@ public:
virtual
~
SwVbaTabStops
()
{}
virtual
~
SwVbaTabStops
()
{}
// Methods
// Methods
virtual
css
::
uno
::
Reference
<
::
ooo
::
vba
::
word
::
XTabStop
>
SAL_CALL
Add
(
float
Position
,
const
css
::
uno
::
Any
&
Alignment
,
const
css
::
uno
::
Any
&
Leader
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
css
::
uno
::
Reference
<
::
ooo
::
vba
::
word
::
XTabStop
>
SAL_CALL
Add
(
float
Position
,
const
css
::
uno
::
Any
&
Alignment
,
const
css
::
uno
::
Any
&
Leader
)
throw
(
css
::
script
::
BasicErrorException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
ClearAll
(
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
ClearAll
(
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
// XEnumerationAccess
// XEnumerationAccess
...
...
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