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
1f10d5f7
Kaydet (Commit)
1f10d5f7
authored
Ock 23, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1158392 Uncaught exception
Change-Id: Ifbf896bf8c13e83279e481e06098b7ed6ea0116c
üst
94ab3a00
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
8 deletions
+11
-8
AccessibleSpreadsheet.cxx
sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx
+1
-1
AccessibleTableBase.cxx
sc/source/ui/Accessibility/AccessibleTableBase.cxx
+6
-5
AccessibleSpreadsheet.hxx
sc/source/ui/inc/AccessibleSpreadsheet.hxx
+2
-1
AccessibleTableBase.hxx
sc/source/ui/inc/AccessibleTableBase.hxx
+2
-1
No files found.
sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx
Dosyayı görüntüle @
1f10d5f7
...
...
@@ -1505,7 +1505,7 @@ sal_Bool SAL_CALL ScAccessibleSpreadsheet::selectColumn( sal_Int32 column )
}
sal_Bool
SAL_CALL
ScAccessibleSpreadsheet
::
unselectRow
(
sal_Int32
row
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeException
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeException
,
std
::
exception
)
{
if
(
IsFormulaMode
())
{
...
...
sc/source/ui/Accessibility/AccessibleTableBase.cxx
Dosyayı görüntüle @
1f10d5f7
...
...
@@ -498,26 +498,27 @@ void ScAccessibleTableBase::CommitTableModelChange(sal_Int32 nStartRow, sal_Int3
}
sal_Bool
SAL_CALL
ScAccessibleTableBase
::
selectRow
(
sal_Int32
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeException
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeException
)
{
return
sal_True
;
}
sal_Bool
SAL_CALL
ScAccessibleTableBase
::
selectColumn
(
sal_Int32
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeException
,
std
::
exception
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeException
,
std
::
exception
)
{
return
sal_True
;
}
sal_Bool
SAL_CALL
ScAccessibleTableBase
::
unselectRow
(
sal_Int32
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeException
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeException
,
std
::
exception
)
{
return
sal_True
;
}
sal_Bool
SAL_CALL
ScAccessibleTableBase
::
unselectColumn
(
sal_Int32
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeException
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeException
)
{
return
sal_True
;
}
...
...
sc/source/ui/inc/AccessibleSpreadsheet.hxx
Dosyayı görüntüle @
1f10d5f7
...
...
@@ -247,7 +247,8 @@ private:
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
sal_Bool
SAL_CALL
unselectRow
(
sal_Int32
row
)
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
;
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
sal_Bool
SAL_CALL
unselectColumn
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
;
...
...
sc/source/ui/inc/AccessibleTableBase.hxx
Dosyayı görüntüle @
1f10d5f7
...
...
@@ -201,7 +201,8 @@ public:
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
sal_Bool
SAL_CALL
unselectRow
(
sal_Int32
row
)
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
;
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
sal_Bool
SAL_CALL
unselectColumn
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
;
...
...
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