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
d375986d
Kaydet (Commit)
d375986d
authored
Eyl 02, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#707084 Uncaught exception
Change-Id: I89459f7a77fcb5785cfb2e8288326fce65202d9c
üst
d1c18edd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
4 deletions
+10
-4
XStringResourceWithLocation.idl
offapi/com/sun/star/resource/XStringResourceWithLocation.idl
+5
-2
stringresource.cxx
scripting/source/stringresource/stringresource.cxx
+3
-1
stringresource.hxx
scripting/source/stringresource/stringresource.hxx
+2
-1
No files found.
offapi/com/sun/star/resource/XStringResourceWithLocation.idl
Dosyayı görüntüle @
d375986d
...
...
@@ -22,7 +22,6 @@
#
include
<
com
/
sun
/
star
/
resource
/
XStringResourcePersistence
.
idl>
module
com
{
module
sun
{
module
star
{
module
resource
{
/**
...
...
@@ -65,9 +64,13 @@ interface XStringResourceWithLocation: com::sun::star::resource::XStringResource
@throws com::sun::star::lang::IllegalArgumentException
if an empty string is passed as URL
@throws com::sun::star::lang::NoSupportException
if the location is readonly
*/
void setURL( [in] string URL )
raises( ::com::sun::star::lang::IllegalArgumentException );
raises( ::com::sun::star::lang::IllegalArgumentException,
::com::sun::star::lang::NoSupportException );
};
...
...
scripting/source/stringresource/stringresource.cxx
Dosyayı görüntüle @
d375986d
...
...
@@ -2864,7 +2864,9 @@ void StringResourceWithLocationImpl::storeAsURL( const OUString& URL )
}
void
StringResourceWithLocationImpl
::
setURL
(
const
OUString
&
URL
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
throw
(
css
::
lang
::
IllegalArgumentException
,
css
::
lang
::
NoSupportException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
::
osl
::
MutexGuard
aGuard
(
getMutex
()
);
implCheckReadOnly
(
"StringResourceWithLocationImpl::setURL(): Read only"
);
...
...
scripting/source/stringresource/stringresource.hxx
Dosyayı görüntüle @
d375986d
...
...
@@ -668,7 +668,8 @@ public:
virtual
void
SAL_CALL
storeAsURL
(
const
OUString
&
URL
)
throw
(
::
com
::
sun
::
star
::
uno
::
Exception
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setURL
(
const
OUString
&
URL
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
throw
(
css
::
lang
::
IllegalArgumentException
,
css
::
lang
::
NoSupportException
,
css
::
uno
::
RuntimeException
,
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