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
94ab3a00
Kaydet (Commit)
94ab3a00
authored
Ock 23, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1158393 Uncaught exception
Change-Id: I1b42c0e76da019e1828dd6318dc22c7811ea7429
üst
4967f271
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
4 deletions
+7
-4
AccessibleSpreadsheet.cxx
sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx
+1
-1
AccessibleTableBase.cxx
sc/source/ui/Accessibility/AccessibleTableBase.cxx
+2
-1
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 @
94ab3a00
...
@@ -1489,7 +1489,7 @@ throw (lang::IndexOutOfBoundsException, uno::RuntimeException)
...
@@ -1489,7 +1489,7 @@ throw (lang::IndexOutOfBoundsException, uno::RuntimeException)
}
}
sal_Bool
SAL_CALL
ScAccessibleSpreadsheet
::
selectColumn
(
sal_Int32
column
)
sal_Bool
SAL_CALL
ScAccessibleSpreadsheet
::
selectColumn
(
sal_Int32
column
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeException
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeException
,
std
::
exception
)
{
{
if
(
IsFormulaMode
())
if
(
IsFormulaMode
())
{
{
...
...
sc/source/ui/Accessibility/AccessibleTableBase.cxx
Dosyayı görüntüle @
94ab3a00
...
@@ -504,7 +504,8 @@ throw (lang::IndexOutOfBoundsException, uno::RuntimeException)
...
@@ -504,7 +504,8 @@ throw (lang::IndexOutOfBoundsException, uno::RuntimeException)
}
}
sal_Bool
SAL_CALL
ScAccessibleTableBase
::
selectColumn
(
sal_Int32
)
sal_Bool
SAL_CALL
ScAccessibleTableBase
::
selectColumn
(
sal_Int32
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeException
)
throw
(
lang
::
IndexOutOfBoundsException
,
uno
::
RuntimeException
,
std
::
exception
)
{
{
return
sal_True
;
return
sal_True
;
}
}
...
...
sc/source/ui/inc/AccessibleSpreadsheet.hxx
Dosyayı görüntüle @
94ab3a00
...
@@ -244,7 +244,8 @@ private:
...
@@ -244,7 +244,8 @@ private:
virtual
sal_Bool
SAL_CALL
selectRow
(
sal_Int32
row
)
virtual
sal_Bool
SAL_CALL
selectRow
(
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
)
;
virtual
sal_Bool
SAL_CALL
selectColumn
(
sal_Int32
column
)
virtual
sal_Bool
SAL_CALL
selectColumn
(
sal_Int32
column
)
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
unselectRow
(
sal_Int32
row
)
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
)
;
virtual
sal_Bool
SAL_CALL
unselectColumn
(
sal_Int32
column
)
virtual
sal_Bool
SAL_CALL
unselectColumn
(
sal_Int32
column
)
...
...
sc/source/ui/inc/AccessibleTableBase.hxx
Dosyayı görüntüle @
94ab3a00
...
@@ -198,7 +198,8 @@ public:
...
@@ -198,7 +198,8 @@ public:
virtual
sal_Bool
SAL_CALL
selectRow
(
sal_Int32
row
)
virtual
sal_Bool
SAL_CALL
selectRow
(
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
)
;
virtual
sal_Bool
SAL_CALL
selectColumn
(
sal_Int32
column
)
virtual
sal_Bool
SAL_CALL
selectColumn
(
sal_Int32
column
)
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
unselectRow
(
sal_Int32
row
)
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
)
;
virtual
sal_Bool
SAL_CALL
unselectColumn
(
sal_Int32
column
)
virtual
sal_Bool
SAL_CALL
unselectColumn
(
sal_Int32
column
)
...
...
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