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
60e7472b
Kaydet (Commit)
60e7472b
authored
Kas 28, 2012
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
OUString::concat() does not modify in-place
Change-Id: I298f33a23e44146d7ce5fbf72d176020804e03d6
üst
287a1842
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
ProviderCache.cxx
scripting/source/provider/ProviderCache.cxx
+1
-1
stringresource.cxx
scripting/source/stringresource/stringresource.cxx
+2
-2
No files found.
scripting/source/provider/ProviderCache.cxx
Dosyayı görüntüle @
60e7472b
...
@@ -176,7 +176,7 @@ ProviderCache::populateCache() throw ( RuntimeException )
...
@@ -176,7 +176,7 @@ ProviderCache::populateCache() throw ( RuntimeException )
{
{
::
rtl
::
OUString
temp
=
OUSTR
(
::
rtl
::
OUString
temp
=
OUSTR
(
"ProviderCache::populateCache: couldn't obtain XSingleComponentFactory for "
);
"ProviderCache::populateCache: couldn't obtain XSingleComponentFactory for "
);
temp
.
concat
(
serviceName
);
temp
=
temp
.
concat
(
serviceName
);
throw
RuntimeException
(
temp
.
concat
(
e
.
Message
),
Reference
<
XInterface
>
()
);
throw
RuntimeException
(
temp
.
concat
(
e
.
Message
),
Reference
<
XInterface
>
()
);
}
}
}
}
...
...
scripting/source/stringresource/stringresource.cxx
Dosyayı görüntüle @
60e7472b
...
@@ -200,7 +200,7 @@ void StringResourceImpl::removeModifyListener( const Reference< XModifyListener
...
@@ -200,7 +200,7 @@ void StringResourceImpl::removeModifyListener( const Reference< XModifyListener
if
(
!
bSuccess
)
if
(
!
bSuccess
)
{
{
::
rtl
::
OUString
errorMsg
(
"StringResourceImpl: No entry for ResourceID: "
);
::
rtl
::
OUString
errorMsg
(
"StringResourceImpl: No entry for ResourceID: "
);
errorMsg
.
concat
(
ResourceID
);
errorMsg
=
errorMsg
.
concat
(
ResourceID
);
throw
::
com
::
sun
::
star
::
resource
::
MissingResourceException
(
errorMsg
,
Reference
<
XInterface
>
()
);
throw
::
com
::
sun
::
star
::
resource
::
MissingResourceException
(
errorMsg
,
Reference
<
XInterface
>
()
);
}
}
return
aRetStr
;
return
aRetStr
;
...
@@ -448,7 +448,7 @@ void StringResourceImpl::implRemoveId( const ::rtl::OUString& ResourceID, Locale
...
@@ -448,7 +448,7 @@ void StringResourceImpl::implRemoveId( const ::rtl::OUString& ResourceID, Locale
if
(
it
==
rHashMap
.
end
()
)
if
(
it
==
rHashMap
.
end
()
)
{
{
::
rtl
::
OUString
errorMsg
(
"StringResourceImpl: No entries for ResourceID: "
);
::
rtl
::
OUString
errorMsg
(
"StringResourceImpl: No entries for ResourceID: "
);
errorMsg
.
concat
(
ResourceID
);
errorMsg
=
errorMsg
.
concat
(
ResourceID
);
throw
::
com
::
sun
::
star
::
resource
::
MissingResourceException
(
errorMsg
,
Reference
<
XInterface
>
()
);
throw
::
com
::
sun
::
star
::
resource
::
MissingResourceException
(
errorMsg
,
Reference
<
XInterface
>
()
);
}
}
rHashMap
.
erase
(
it
);
rHashMap
.
erase
(
it
);
...
...
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