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
b76187aa
Kaydet (Commit)
b76187aa
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: Ibd913043822c9901bad8495944367915df10b1f4
üst
eecfc1e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
atkeditabletext.cxx
vcl/unx/gtk/a11y/atkeditabletext.cxx
+7
-7
No files found.
vcl/unx/gtk/a11y/atkeditabletext.cxx
Dosyayı görüntüle @
b76187aa
...
...
@@ -69,7 +69,7 @@ editable_text_wrapper_set_run_attributes( AtkEditableText *text,
return
pEditableText
->
setAttributes
(
nStartOffset
,
nEndOffset
,
aAttributeList
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in setAttributes()"
);
}
...
...
@@ -88,7 +88,7 @@ editable_text_wrapper_set_text_contents( AtkEditableText *text,
pEditableText
->
setText
(
aString
);
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in setText()"
);
}
}
...
...
@@ -108,7 +108,7 @@ editable_text_wrapper_insert_text( AtkEditableText *text,
*
pos
+=
length
;
}
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in insertText()"
);
}
}
...
...
@@ -123,7 +123,7 @@ editable_text_wrapper_cut_text( AtkEditableText *text,
if
(
pEditableText
)
pEditableText
->
cutText
(
start
,
end
);
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in cutText()"
);
}
}
...
...
@@ -138,7 +138,7 @@ editable_text_wrapper_delete_text( AtkEditableText *text,
if
(
pEditableText
)
pEditableText
->
deleteText
(
start
,
end
);
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in deleteText()"
);
}
}
...
...
@@ -152,7 +152,7 @@ editable_text_wrapper_paste_text( AtkEditableText *text,
if
(
pEditableText
)
pEditableText
->
pasteText
(
pos
);
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in pasteText()"
);
}
}
...
...
@@ -167,7 +167,7 @@ editable_text_wrapper_copy_text( AtkEditableText *text,
if
(
pEditableText
)
pEditableText
->
copyText
(
start
,
end
);
}
catch
(
const
uno
::
Exception
&
e
)
{
catch
(
const
uno
::
Exception
&
)
{
g_warning
(
"Exception in copyText()"
);
}
}
...
...
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