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
Show 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:
...
@@ -75,66 +75,44 @@ public:
private
:
private
:
virtual
~
Service
()
override
{}
virtual
~
Service
()
override
{}
virtual
OUString
SAL_CALL
getImplementationName
()
virtual
OUString
SAL_CALL
getImplementationName
()
override
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
{
return
getServiceImplementationName
();
}
{
return
getServiceImplementationName
();
}
virtual
sal_Bool
SAL_CALL
supportsService
(
OUString
const
&
ServiceName
)
virtual
sal_Bool
SAL_CALL
supportsService
(
OUString
const
&
ServiceName
)
override
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
{
return
ServiceName
==
getSupportedServiceNames
()[
0
];
}
{
return
ServiceName
==
getSupportedServiceNames
()[
0
];
}
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
getSupportedServiceNames
()
override
{
return
getServiceSupportedServiceNames
();
}
{
return
getServiceSupportedServiceNames
();
}
virtual
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySetInfo
>
SAL_CALL
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
>
();
}
{
return
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySetInfo
>
();
}
virtual
void
SAL_CALL
setPropertyValue
(
virtual
void
SAL_CALL
setPropertyValue
(
OUString
const
&
,
css
::
uno
::
Any
const
&
)
OUString
const
&
,
css
::
uno
::
Any
const
&
)
override
;
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
beans
::
PropertyVetoException
,
css
::
lang
::
IllegalArgumentException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
;
virtual
css
::
uno
::
Any
SAL_CALL
getPropertyValue
(
virtual
css
::
uno
::
Any
SAL_CALL
getPropertyValue
(
OUString
const
&
PropertyName
)
OUString
const
&
PropertyName
)
override
;
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
;
virtual
void
SAL_CALL
addPropertyChangeListener
(
virtual
void
SAL_CALL
addPropertyChangeListener
(
OUString
const
&
,
OUString
const
&
,
css
::
uno
::
Reference
<
css
::
beans
::
XPropertyChangeListener
>
const
&
)
css
::
uno
::
Reference
<
css
::
beans
::
XPropertyChangeListener
>
const
&
)
override
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
{}
{}
virtual
void
SAL_CALL
removePropertyChangeListener
(
virtual
void
SAL_CALL
removePropertyChangeListener
(
OUString
const
&
,
OUString
const
&
,
css
::
uno
::
Reference
<
css
::
beans
::
XPropertyChangeListener
>
const
&
)
css
::
uno
::
Reference
<
css
::
beans
::
XPropertyChangeListener
>
const
&
)
override
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
{}
{}
virtual
void
SAL_CALL
addVetoableChangeListener
(
virtual
void
SAL_CALL
addVetoableChangeListener
(
OUString
const
&
,
OUString
const
&
,
css
::
uno
::
Reference
<
css
::
beans
::
XVetoableChangeListener
>
const
&
)
css
::
uno
::
Reference
<
css
::
beans
::
XVetoableChangeListener
>
const
&
)
override
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
{}
{}
virtual
void
SAL_CALL
removeVetoableChangeListener
(
virtual
void
SAL_CALL
removeVetoableChangeListener
(
OUString
const
&
,
OUString
const
&
,
css
::
uno
::
Reference
<
css
::
beans
::
XVetoableChangeListener
>
const
&
)
css
::
uno
::
Reference
<
css
::
beans
::
XVetoableChangeListener
>
const
&
)
override
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
{}
{}
bool
enabled_
;
bool
enabled_
;
...
@@ -152,10 +130,6 @@ Service::Service(): enabled_(false) {
...
@@ -152,10 +130,6 @@ Service::Service(): enabled_(false) {
}
}
void
Service
::
setPropertyValue
(
OUString
const
&
,
css
::
uno
::
Any
const
&
)
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
(
throw
css
::
lang
::
IllegalArgumentException
(
OUString
(
"setPropertyValue not supported"
),
OUString
(
"setPropertyValue not supported"
),
...
@@ -163,9 +137,6 @@ void Service::setPropertyValue(OUString const &, css::uno::Any const &)
...
@@ -163,9 +137,6 @@ void Service::setPropertyValue(OUString const &, css::uno::Any const &)
}
}
css
::
uno
::
Any
Service
::
getPropertyValue
(
OUString
const
&
PropertyName
)
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"
if
(
PropertyName
==
"EnableATToolSupport"
||
PropertyName
==
"ExternalMailer"
||
PropertyName
==
"SourceViewFontHeight"
||
PropertyName
==
"SourceViewFontName"
||
PropertyName
==
"WorkPathVariable"
||
PropertyName
==
"ooInetFTPProxyName"
||
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