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
f9f0c0d2
Kaydet (Commit)
f9f0c0d2
authored
Ock 24, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1158382 Uncaught exception
Change-Id: Icd86cfa4ff0c4c26de0f4f9258646353e718823e
üst
71bd3ad7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
9 deletions
+8
-9
AccessibleContextBase.cxx
sc/source/ui/Accessibility/AccessibleContextBase.cxx
+2
-3
AccessibleDocumentPagePreview.cxx
sc/source/ui/Accessibility/AccessibleDocumentPagePreview.cxx
+2
-1
AccessibleContextBase.hxx
sc/source/ui/inc/AccessibleContextBase.hxx
+2
-2
AccessibleDocumentPagePreview.hxx
sc/source/ui/inc/AccessibleDocumentPagePreview.hxx
+2
-3
No files found.
sc/source/ui/Accessibility/AccessibleContextBase.cxx
Dosyayı görüntüle @
f9f0c0d2
...
...
@@ -250,9 +250,8 @@ sal_Int32 SAL_CALL ScAccessibleContextBase::getBackground( )
//===== XAccessibleContext ==================================================
sal_Int32
SAL_CALL
ScAccessibleContextBase
::
getAccessibleChildCount
(
void
)
throw
(
uno
::
RuntimeException
)
sal_Int32
SAL_CALL
ScAccessibleContextBase
::
getAccessibleChildCount
()
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
OSL_FAIL
(
"should be implemented in the abrevated class"
);
return
0
;
...
...
sc/source/ui/Accessibility/AccessibleDocumentPagePreview.cxx
Dosyayı görüntüle @
f9f0c0d2
...
...
@@ -1483,7 +1483,8 @@ void SAL_CALL ScAccessibleDocumentPagePreview::grabFocus() throw (uno::RuntimeEx
//===== XAccessibleContext ==============================================
sal_Int32
SAL_CALL
ScAccessibleDocumentPagePreview
::
getAccessibleChildCount
(
void
)
throw
(
uno
::
RuntimeException
)
sal_Int32
SAL_CALL
ScAccessibleDocumentPagePreview
::
getAccessibleChildCount
()
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
SolarMutexGuard
aGuard
;
IsObjectValid
();
...
...
sc/source/ui/inc/AccessibleContextBase.hxx
Dosyayı görüntüle @
f9f0c0d2
...
...
@@ -141,8 +141,8 @@ public:
///===== XAccessibleContext ==============================================
/// Return the number of currently visible children.
virtual
sal_Int32
SAL_CALL
getAccessibleChildCount
(
void
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeE
xception
);
virtual
sal_Int32
SAL_CALL
getAccessibleChildCount
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
e
xception
);
/// Return the specified child or NULL if index is invalid.
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
SAL_CALL
...
...
sc/source/ui/inc/AccessibleDocumentPagePreview.hxx
Dosyayı görüntüle @
f9f0c0d2
...
...
@@ -65,9 +65,8 @@ public:
///===== XAccessibleContext ==============================================
/// Return the number of currently visible children.
virtual
sal_Int32
SAL_CALL
getAccessibleChildCount
(
void
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getAccessibleChildCount
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
/// Return the specified child or NULL if index is invalid.
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
SAL_CALL
...
...
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