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
8b47d21e
Kaydet (Commit)
8b47d21e
authored
Kas 13, 2013
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
-Werror,-Wunused-exception-parameter
Change-Id: If4952a5e36ba52f07231560f4bd3cc568b9fde52
üst
fea392e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
19 deletions
+19
-19
atktable.cxx
vcl/unx/gtk/a11y/atktable.cxx
+19
-19
No files found.
vcl/unx/gtk/a11y/atktable.cxx
Dosyayı görüntüle @
8b47d21e
...
@@ -101,7 +101,7 @@ table_wrapper_ref_at (AtkTable *table,
...
@@ -101,7 +101,7 @@ table_wrapper_ref_at (AtkTable *table,
return
atk_object_wrapper_conditional_ref
(
pTable
->
getAccessibleCellAt
(
row
,
column
)
);
return
atk_object_wrapper_conditional_ref
(
pTable
->
getAccessibleCellAt
(
row
,
column
)
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getAccessibleCellAt()"
);
g_warning
(
"Exception in getAccessibleCellAt()"
);
}
}
...
@@ -127,7 +127,7 @@ table_wrapper_get_index_at (AtkTable *table,
...
@@ -127,7 +127,7 @@ table_wrapper_get_index_at (AtkTable *table,
if
(
pTable
)
if
(
pTable
)
return
pTable
->
getAccessibleIndex
(
row
,
column
);
return
pTable
->
getAccessibleIndex
(
row
,
column
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getAccessibleIndex()"
);
g_warning
(
"Exception in getAccessibleIndex()"
);
}
}
...
@@ -152,7 +152,7 @@ table_wrapper_get_column_at_index (AtkTable *table,
...
@@ -152,7 +152,7 @@ table_wrapper_get_column_at_index (AtkTable *table,
if
(
pTable
)
if
(
pTable
)
return
pTable
->
getAccessibleColumn
(
nIndex
);
return
pTable
->
getAccessibleColumn
(
nIndex
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getAccessibleColumn()"
);
g_warning
(
"Exception in getAccessibleColumn()"
);
}
}
...
@@ -177,7 +177,7 @@ table_wrapper_get_row_at_index( AtkTable *table,
...
@@ -177,7 +177,7 @@ table_wrapper_get_row_at_index( AtkTable *table,
if
(
pTable
)
if
(
pTable
)
return
pTable
->
getAccessibleRow
(
nIndex
);
return
pTable
->
getAccessibleRow
(
nIndex
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getAccessibleRow()"
);
g_warning
(
"Exception in getAccessibleRow()"
);
}
}
...
@@ -201,7 +201,7 @@ table_wrapper_get_n_columns( AtkTable *table )
...
@@ -201,7 +201,7 @@ table_wrapper_get_n_columns( AtkTable *table )
if
(
pTable
)
if
(
pTable
)
return
pTable
->
getAccessibleColumnCount
();
return
pTable
->
getAccessibleColumnCount
();
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getAccessibleColumnCount()"
);
g_warning
(
"Exception in getAccessibleColumnCount()"
);
}
}
...
@@ -225,7 +225,7 @@ table_wrapper_get_n_rows( AtkTable *table )
...
@@ -225,7 +225,7 @@ table_wrapper_get_n_rows( AtkTable *table )
if
(
pTable
)
if
(
pTable
)
return
pTable
->
getAccessibleRowCount
();
return
pTable
->
getAccessibleRowCount
();
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getAccessibleRowCount()"
);
g_warning
(
"Exception in getAccessibleRowCount()"
);
}
}
...
@@ -251,7 +251,7 @@ table_wrapper_get_column_extent_at( AtkTable *table,
...
@@ -251,7 +251,7 @@ table_wrapper_get_column_extent_at( AtkTable *table,
if
(
pTable
)
if
(
pTable
)
return
pTable
->
getAccessibleColumnExtentAt
(
row
,
column
);
return
pTable
->
getAccessibleColumnExtentAt
(
row
,
column
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getAccessibleColumnExtentAt()"
);
g_warning
(
"Exception in getAccessibleColumnExtentAt()"
);
}
}
...
@@ -277,7 +277,7 @@ table_wrapper_get_row_extent_at( AtkTable *table,
...
@@ -277,7 +277,7 @@ table_wrapper_get_row_extent_at( AtkTable *table,
if
(
pTable
)
if
(
pTable
)
return
pTable
->
getAccessibleRowExtentAt
(
row
,
column
);
return
pTable
->
getAccessibleRowExtentAt
(
row
,
column
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getAccessibleRowExtentAt()"
);
g_warning
(
"Exception in getAccessibleRowExtentAt()"
);
}
}
...
@@ -301,7 +301,7 @@ table_wrapper_get_caption( AtkTable *table )
...
@@ -301,7 +301,7 @@ table_wrapper_get_caption( AtkTable *table )
return
atk_object_wrapper_conditional_ref
(
pTable
->
getAccessibleCaption
()
);
return
atk_object_wrapper_conditional_ref
(
pTable
->
getAccessibleCaption
()
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getAccessibleCaption()"
);
g_warning
(
"Exception in getAccessibleCaption()"
);
}
}
...
@@ -326,7 +326,7 @@ table_wrapper_get_row_description( AtkTable *table,
...
@@ -326,7 +326,7 @@ table_wrapper_get_row_description( AtkTable *table,
if
(
pTable
)
if
(
pTable
)
return
getAsConst
(
pTable
->
getAccessibleRowDescription
(
row
)
);
return
getAsConst
(
pTable
->
getAccessibleRowDescription
(
row
)
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getAccessibleRowDescription()"
);
g_warning
(
"Exception in getAccessibleRowDescription()"
);
}
}
...
@@ -351,7 +351,7 @@ table_wrapper_get_column_description( AtkTable *table,
...
@@ -351,7 +351,7 @@ table_wrapper_get_column_description( AtkTable *table,
if
(
pTable
)
if
(
pTable
)
return
getAsConst
(
pTable
->
getAccessibleColumnDescription
(
column
)
);
return
getAsConst
(
pTable
->
getAccessibleColumnDescription
(
column
)
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getAccessibleColumnDescription()"
);
g_warning
(
"Exception in getAccessibleColumnDescription()"
);
}
}
...
@@ -382,7 +382,7 @@ table_wrapper_get_row_header( AtkTable *table,
...
@@ -382,7 +382,7 @@ table_wrapper_get_row_header( AtkTable *table,
return
atk_object_wrapper_conditional_ref
(
xRowHeaders
->
getAccessibleCellAt
(
row
,
0
)
);
return
atk_object_wrapper_conditional_ref
(
xRowHeaders
->
getAccessibleCellAt
(
row
,
0
)
);
}
}
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getAccessibleRowHeaders()"
);
g_warning
(
"Exception in getAccessibleRowHeaders()"
);
}
}
...
@@ -414,7 +414,7 @@ table_wrapper_get_column_header( AtkTable *table,
...
@@ -414,7 +414,7 @@ table_wrapper_get_column_header( AtkTable *table,
return
atk_object_wrapper_conditional_ref
(
xColumnHeaders
->
getAccessibleCellAt
(
0
,
column
)
);
return
atk_object_wrapper_conditional_ref
(
xColumnHeaders
->
getAccessibleCellAt
(
0
,
column
)
);
}
}
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getAccessibleColumnHeaders()"
);
g_warning
(
"Exception in getAccessibleColumnHeaders()"
);
}
}
...
@@ -439,7 +439,7 @@ table_wrapper_get_summary( AtkTable *table )
...
@@ -439,7 +439,7 @@ table_wrapper_get_summary( AtkTable *table )
return
atk_object_wrapper_conditional_ref
(
pTable
->
getAccessibleSummary
()
);
return
atk_object_wrapper_conditional_ref
(
pTable
->
getAccessibleSummary
()
);
}
}
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getAccessibleSummary()"
);
g_warning
(
"Exception in getAccessibleSummary()"
);
}
}
...
@@ -480,7 +480,7 @@ table_wrapper_get_selected_columns( AtkTable *table,
...
@@ -480,7 +480,7 @@ table_wrapper_get_selected_columns( AtkTable *table,
if
(
pTable
)
if
(
pTable
)
return
convertToGIntArray
(
pTable
->
getSelectedAccessibleColumns
(),
pSelected
);
return
convertToGIntArray
(
pTable
->
getSelectedAccessibleColumns
(),
pSelected
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getSelectedAccessibleColumns()"
);
g_warning
(
"Exception in getSelectedAccessibleColumns()"
);
}
}
...
@@ -505,7 +505,7 @@ table_wrapper_get_selected_rows( AtkTable *table,
...
@@ -505,7 +505,7 @@ table_wrapper_get_selected_rows( AtkTable *table,
if
(
pTable
)
if
(
pTable
)
return
convertToGIntArray
(
pTable
->
getSelectedAccessibleRows
(),
pSelected
);
return
convertToGIntArray
(
pTable
->
getSelectedAccessibleRows
(),
pSelected
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in getSelectedAccessibleRows()"
);
g_warning
(
"Exception in getSelectedAccessibleRows()"
);
}
}
...
@@ -530,7 +530,7 @@ table_wrapper_is_column_selected( AtkTable *table,
...
@@ -530,7 +530,7 @@ table_wrapper_is_column_selected( AtkTable *table,
if
(
pTable
)
if
(
pTable
)
return
pTable
->
isAccessibleColumnSelected
(
column
);
return
pTable
->
isAccessibleColumnSelected
(
column
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in isAccessibleColumnSelected()"
);
g_warning
(
"Exception in isAccessibleColumnSelected()"
);
}
}
...
@@ -555,7 +555,7 @@ table_wrapper_is_row_selected( AtkTable *table,
...
@@ -555,7 +555,7 @@ table_wrapper_is_row_selected( AtkTable *table,
if
(
pTable
)
if
(
pTable
)
return
pTable
->
isAccessibleRowSelected
(
row
);
return
pTable
->
isAccessibleRowSelected
(
row
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in isAccessibleRowSelected()"
);
g_warning
(
"Exception in isAccessibleRowSelected()"
);
}
}
...
@@ -581,7 +581,7 @@ table_wrapper_is_selected( AtkTable *table,
...
@@ -581,7 +581,7 @@ table_wrapper_is_selected( AtkTable *table,
if
(
pTable
)
if
(
pTable
)
return
pTable
->
isAccessibleSelected
(
row
,
column
);
return
pTable
->
isAccessibleSelected
(
row
,
column
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in isAccessibleSelected()"
);
g_warning
(
"Exception in isAccessibleSelected()"
);
}
}
...
...
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