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
df60fbc3
Kaydet (Commit)
df60fbc3
authored
Ock 27, 2017
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove dynamic exception specifications from some TDE-only code
Change-Id: Ic5fa5648d0d52bf5a16b5d3c32c549d5fffb2f4f
üst
12ffd3ec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
39 deletions
+10
-39
kdebackend.cxx
shell/source/backends/kdebe/kdebackend.cxx
+10
-39
No files found.
shell/source/backends/kdebe/kdebackend.cxx
Dosyayı görüntüle @
df60fbc3
...
...
@@ -75,66 +75,44 @@ public:
private
:
virtual
~
Service
()
override
{}
virtual
OUString
SAL_CALL
getImplementationName
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
virtual
OUString
SAL_CALL
getImplementationName
()
override
{
return
getServiceImplementationName
();
}
virtual
sal_Bool
SAL_CALL
supportsService
(
OUString
const
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
virtual
sal_Bool
SAL_CALL
supportsService
(
OUString
const
&
ServiceName
)
override
{
return
ServiceName
==
getSupportedServiceNames
()[
0
];
}
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
getSupportedServiceNames
()
override
{
return
getServiceSupportedServiceNames
();
}
virtual
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySetInfo
>
SAL_CALL
getPropertySetInfo
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
getPropertySetInfo
()
override
{
return
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySetInfo
>
();
}
virtual
void
SAL_CALL
setPropertyValue
(
OUString
const
&
,
css
::
uno
::
Any
const
&
)
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
beans
::
PropertyVetoException
,
css
::
lang
::
IllegalArgumentException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
;
OUString
const
&
,
css
::
uno
::
Any
const
&
)
override
;
virtual
css
::
uno
::
Any
SAL_CALL
getPropertyValue
(
OUString
const
&
PropertyName
)
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
;
OUString
const
&
PropertyName
)
override
;
virtual
void
SAL_CALL
addPropertyChangeListener
(
OUString
const
&
,
css
::
uno
::
Reference
<
css
::
beans
::
XPropertyChangeListener
>
const
&
)
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
css
::
uno
::
Reference
<
css
::
beans
::
XPropertyChangeListener
>
const
&
)
override
{}
virtual
void
SAL_CALL
removePropertyChangeListener
(
OUString
const
&
,
css
::
uno
::
Reference
<
css
::
beans
::
XPropertyChangeListener
>
const
&
)
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
css
::
uno
::
Reference
<
css
::
beans
::
XPropertyChangeListener
>
const
&
)
override
{}
virtual
void
SAL_CALL
addVetoableChangeListener
(
OUString
const
&
,
css
::
uno
::
Reference
<
css
::
beans
::
XVetoableChangeListener
>
const
&
)
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
css
::
uno
::
Reference
<
css
::
beans
::
XVetoableChangeListener
>
const
&
)
override
{}
virtual
void
SAL_CALL
removeVetoableChangeListener
(
OUString
const
&
,
css
::
uno
::
Reference
<
css
::
beans
::
XVetoableChangeListener
>
const
&
)
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
css
::
uno
::
Reference
<
css
::
beans
::
XVetoableChangeListener
>
const
&
)
override
{}
bool
enabled_
;
...
...
@@ -152,10 +130,6 @@ Service::Service(): enabled_(false) {
}
void
Service
::
setPropertyValue
(
OUString
const
&
,
css
::
uno
::
Any
const
&
)
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
beans
::
PropertyVetoException
,
css
::
lang
::
IllegalArgumentException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
throw
css
::
lang
::
IllegalArgumentException
(
OUString
(
"setPropertyValue not supported"
),
...
...
@@ -163,9 +137,6 @@ void Service::setPropertyValue(OUString const &, css::uno::Any const &)
}
css
::
uno
::
Any
Service
::
getPropertyValue
(
OUString
const
&
PropertyName
)
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
if
(
PropertyName
==
"EnableATToolSupport"
||
PropertyName
==
"ExternalMailer"
||
PropertyName
==
"SourceViewFontHeight"
||
PropertyName
==
"SourceViewFontName"
||
PropertyName
==
"WorkPathVariable"
||
PropertyName
==
"ooInetFTPProxyName"
...
...
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