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
9ed8e1f1
Kaydet (Commit)
9ed8e1f1
authored
Agu 31, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#707409 Uncaught exception
Change-Id: I0f19cd6411c7008a4698fc81fd2ce9c4108ce8eb
üst
62962557
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
XView.idl
oovbaapi/ooo/vba/word/XView.idl
+6
-1
vbaview.cxx
sw/source/ui/vba/vbaview.cxx
+1
-1
vbaview.hxx
sw/source/ui/vba/vbaview.hxx
+1
-1
No files found.
oovbaapi/ooo/vba/word/XView.idl
Dosyayı görüntüle @
9ed8e1f1
...
...
@@ -20,6 +20,7 @@
#
define
__ooo_vba_word_XView_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
{
...
...
@@ -28,7 +29,11 @@ interface XView
{
interface
ooo
::
vba
::
XHelperInterface
;
[
attribute
]
long
SeekView
;
[
attribute
]
long
SeekView
{
set
raises
(
com
::
sun
::
star
::
script
::
BasicErrorException
)
;
}
;
[
attribute
]
long
SplitSpecial
;
[
attribute
]
boolean
TableGridLines
;
[
attribute
]
long
Type
;
...
...
sw/source/ui/vba/vbaview.cxx
Dosyayı görüntüle @
9ed8e1f1
...
...
@@ -115,7 +115,7 @@ SwVbaView::getSeekView() throw (css::uno::RuntimeException, std::exception)
}
void
SAL_CALL
SwVbaView
::
setSeekView
(
::
sal_Int32
_seekview
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SwVbaView
::
setSeekView
(
::
sal_Int32
_seekview
)
throw
(
css
::
uno
::
RuntimeException
,
css
::
script
::
BasicErrorException
,
std
::
exception
)
{
// FIXME: save the current cursor position, if the cursor is in the main
// document, so we can jump back to this position, if the macro sets
...
...
sw/source/ui/vba/vbaview.hxx
Dosyayı görüntüle @
9ed8e1f1
...
...
@@ -45,7 +45,7 @@ public:
// XView
virtual
::
sal_Int32
SAL_CALL
getSeekView
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setSeekView
(
::
sal_Int32
_seekview
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setSeekView
(
::
sal_Int32
_seekview
)
throw
(
css
::
uno
::
RuntimeException
,
css
::
script
::
BasicErrorException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
::
sal_Int32
SAL_CALL
getSplitSpecial
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setSplitSpecial
(
::
sal_Int32
_splitspecial
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
getTableGridLines
()
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