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
dfcc20fd
Kaydet (Commit)
dfcc20fd
authored
Mar 19, 2013
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
More "compareToAscii(RTL_CONSTASCII_STRINGPARAM(s)) != compareTo(s)" fixes
Change-Id: Ia93b281b07559fb6f0d67d53dd91dfacf2be0d0b
üst
dc53c77a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
namecont.cxx
basic/source/uno/namecont.cxx
+1
-1
registerucb.cxx
ucbhelper/source/provider/registerucb.cxx
+1
-1
No files found.
basic/source/uno/namecont.cxx
Dosyayı görüntüle @
dfcc20fd
...
...
@@ -2842,7 +2842,7 @@ void SAL_CALL SfxLibraryContainer::exportLibrary( const OUString& Name, const OU
OUString
SfxLibraryContainer
::
expand_url
(
const
OUString
&
url
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
if
(
0
==
url
.
compareTo
(
EXPAND_PROTOCOL
":"
))
if
(
url
.
startsWith
(
EXPAND_PROTOCOL
":"
))
{
if
(
!
mxMacroExpander
.
is
()
)
{
...
...
ucbhelper/source/provider/registerucb.cxx
Dosyayı görüntüle @
dfcc20fd
...
...
@@ -52,7 +52,7 @@ registerAtUcb(
OSL_ENSURE
(
rServiceFactory
.
is
(),
"ucb::registerAtUcb(): No service factory"
);
bool
bNoProxy
=
rArguments
.
compareTo
(
"{noproxy}"
)
==
0
;
bool
bNoProxy
=
rArguments
.
startsWith
(
"{noproxy}"
)
;
rtl
::
OUString
aProviderArguments
(
bNoProxy
?
rArguments
.
...
...
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