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
1a4bf791
Kaydet (Commit)
1a4bf791
authored
Ock 25, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1158370 Uncaught exception
Change-Id: Ic21644e6430618b3951a925eeeb60132f106c911
üst
fbb1bdb3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
4 deletions
+6
-4
AccessiblePreviewTable.cxx
sc/source/ui/Accessibility/AccessiblePreviewTable.cxx
+1
-1
AccessibleTableBase.cxx
sc/source/ui/Accessibility/AccessibleTableBase.cxx
+1
-1
AccessiblePreviewTable.hxx
sc/source/ui/inc/AccessiblePreviewTable.hxx
+2
-1
AccessibleTableBase.hxx
sc/source/ui/inc/AccessibleTableBase.hxx
+2
-1
No files found.
sc/source/ui/Accessibility/AccessiblePreviewTable.cxx
Dosyayı görüntüle @
1a4bf791
...
@@ -353,7 +353,7 @@ uno::Reference< XAccessible > SAL_CALL ScAccessiblePreviewTable::getAccessibleSu
...
@@ -353,7 +353,7 @@ uno::Reference< XAccessible > SAL_CALL ScAccessiblePreviewTable::getAccessibleSu
}
}
sal_Bool
SAL_CALL
ScAccessiblePreviewTable
::
isAccessibleSelected
(
sal_Int32
nRow
,
sal_Int32
nColumn
)
sal_Bool
SAL_CALL
ScAccessiblePreviewTable
::
isAccessibleSelected
(
sal_Int32
nRow
,
sal_Int32
nColumn
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeE
xception
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeException
,
std
::
e
xception
)
{
{
// in the page preview, there is no selection
// in the page preview, there is no selection
SolarMutexGuard
aGuard
;
SolarMutexGuard
aGuard
;
...
...
sc/source/ui/Accessibility/AccessibleTableBase.cxx
Dosyayı görüntüle @
1a4bf791
...
@@ -273,7 +273,7 @@ uno::Reference< XAccessible > SAL_CALL ScAccessibleTableBase::getAccessibleSumma
...
@@ -273,7 +273,7 @@ uno::Reference< XAccessible > SAL_CALL ScAccessibleTableBase::getAccessibleSumma
}
}
sal_Bool
SAL_CALL
ScAccessibleTableBase
::
isAccessibleSelected
(
sal_Int32
/* nRow */
,
sal_Int32
/* nColumn */
)
sal_Bool
SAL_CALL
ScAccessibleTableBase
::
isAccessibleSelected
(
sal_Int32
/* nRow */
,
sal_Int32
/* nColumn */
)
throw
(
uno
::
RuntimeException
,
lang
::
IndexOutOfBoundsException
)
throw
(
uno
::
RuntimeException
,
lang
::
IndexOutOfBoundsException
,
std
::
exception
)
{
{
OSL_FAIL
(
"not implemented yet"
);
OSL_FAIL
(
"not implemented yet"
);
return
false
;
return
false
;
...
...
sc/source/ui/inc/AccessiblePreviewTable.hxx
Dosyayı görüntüle @
1a4bf791
...
@@ -113,7 +113,8 @@ public:
...
@@ -113,7 +113,8 @@ public:
getAccessibleSummary
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
getAccessibleSummary
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isAccessibleSelected
(
sal_Int32
nRow
,
sal_Int32
nColumn
)
virtual
sal_Bool
SAL_CALL
isAccessibleSelected
(
sal_Int32
nRow
,
sal_Int32
nColumn
)
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
sal_Int32
SAL_CALL
getAccessibleIndex
(
sal_Int32
nRow
,
sal_Int32
nColumn
)
virtual
sal_Int32
SAL_CALL
getAccessibleIndex
(
sal_Int32
nRow
,
sal_Int32
nColumn
)
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
...
...
sc/source/ui/inc/AccessibleTableBase.hxx
Dosyayı görüntüle @
1a4bf791
...
@@ -167,7 +167,8 @@ public:
...
@@ -167,7 +167,8 @@ public:
virtual
sal_Bool
SAL_CALL
virtual
sal_Bool
SAL_CALL
isAccessibleSelected
(
sal_Int32
nRow
,
sal_Int32
nColumn
)
isAccessibleSelected
(
sal_Int32
nRow
,
sal_Int32
nColumn
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
);
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
std
::
exception
);
///===== XAccessibleExtendedTable ========================================
///===== XAccessibleExtendedTable ========================================
...
...
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