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
5d6091da
Kaydet (Commit)
5d6091da
authored
Haz 28, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1308510 Uncaught exception
Change-Id: I6734b2953e9a262e7661782c92318f54e14181eb
üst
9e8e75db
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
tabletree.cxx
dbaccess/source/ui/control/tabletree.cxx
+1
-1
tabletree.hxx
dbaccess/source/ui/inc/tabletree.hxx
+1
-1
AccessiblePreviewTable.cxx
sc/source/ui/Accessibility/AccessiblePreviewTable.cxx
+1
-1
AccessiblePreviewTable.hxx
sc/source/ui/inc/AccessiblePreviewTable.hxx
+1
-1
No files found.
dbaccess/source/ui/control/tabletree.cxx
Dosyayı görüntüle @
5d6091da
...
@@ -143,7 +143,7 @@ void OTableTreeListBox::implOnNewConnection( const Reference< XConnection >& _rx
...
@@ -143,7 +143,7 @@ void OTableTreeListBox::implOnNewConnection( const Reference< XConnection >& _rx
m_xImageProvider
.
reset
(
new
ImageProvider
(
m_xConnection
)
);
m_xImageProvider
.
reset
(
new
ImageProvider
(
m_xConnection
)
);
}
}
void
OTableTreeListBox
::
UpdateTableList
(
const
Reference
<
XConnection
>&
_rxConnection
)
throw
(
SQLException
)
void
OTableTreeListBox
::
UpdateTableList
(
const
Reference
<
XConnection
>&
_rxConnection
)
throw
(
SQLException
,
std
::
exception
)
{
{
Sequence
<
OUString
>
sTables
,
sViews
;
Sequence
<
OUString
>
sTables
,
sViews
;
...
...
dbaccess/source/ui/inc/tabletree.hxx
Dosyayı görüntüle @
5d6091da
...
@@ -78,7 +78,7 @@ public:
...
@@ -78,7 +78,7 @@ public:
*/
*/
void
UpdateTableList
(
void
UpdateTableList
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XConnection
>&
_rxConnection
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XConnection
>&
_rxConnection
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
);
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
std
::
exception
);
/** fill the table list with the tables and views determined by the two given containers.
/** fill the table list with the tables and views determined by the two given containers.
The views sequence is used to determine which table is of type view.
The views sequence is used to determine which table is of type view.
...
...
sc/source/ui/Accessibility/AccessiblePreviewTable.cxx
Dosyayı görüntüle @
5d6091da
...
@@ -604,7 +604,7 @@ uno::Sequence<sal_Int8> SAL_CALL ScAccessiblePreviewTable::getImplementationId()
...
@@ -604,7 +604,7 @@ uno::Sequence<sal_Int8> SAL_CALL ScAccessiblePreviewTable::getImplementationId()
//==== internal =========================================================
//==== internal =========================================================
OUString
SAL_CALL
ScAccessiblePreviewTable
::
createAccessibleDescription
()
OUString
SAL_CALL
ScAccessiblePreviewTable
::
createAccessibleDescription
()
throw
(
uno
::
RuntimeException
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
{
OUString
sDesc
(
ScResId
(
STR_ACC_TABLE_DESCR
));
OUString
sDesc
(
ScResId
(
STR_ACC_TABLE_DESCR
));
return
sDesc
;
return
sDesc
;
...
...
sc/source/ui/inc/AccessiblePreviewTable.hxx
Dosyayı görüntüle @
5d6091da
...
@@ -170,7 +170,7 @@ public:
...
@@ -170,7 +170,7 @@ public:
void
SetCurrentIndexInParent
(
sal_Int32
nNew
)
{
mnIndex
=
nNew
;
}
void
SetCurrentIndexInParent
(
sal_Int32
nNew
)
{
mnIndex
=
nNew
;
}
protected
:
protected
:
virtual
OUString
SAL_CALL
createAccessibleDescription
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeE
xception
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
createAccessibleDescription
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
e
xception
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
createAccessibleName
()
virtual
OUString
SAL_CALL
createAccessibleName
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
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