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
7e72b9de
Kaydet (Commit)
7e72b9de
authored
Ara 10, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
use OUString::endsWith where possible
Change-Id: Ie2b68f79a7f9a54899f1d727f9a1fc7cfb14d90a
üst
fb847101
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
dp_sfwk.cxx
desktop/source/deployment/registry/sfwk/dp_sfwk.cxx
+1
-1
vmlinputstream.cxx
oox/source/vml/vmlinputstream.cxx
+1
-1
ucpext_datasupplier.cxx
ucb/source/ucp/ext/ucpext_datasupplier.cxx
+1
-1
No files found.
desktop/source/deployment/registry/sfwk/dp_sfwk.cxx
Dosyayı görüntüle @
7e72b9de
...
...
@@ -143,7 +143,7 @@ BackendImpl::PackageImpl::PackageImpl(
initPackageHandler
();
sal_Int32
segmEnd
=
url
.
getLength
();
if
(
!
url
.
isEmpty
()
&&
url
[
url
.
getLength
()
-
1
]
==
'/'
)
if
(
url
.
endsWith
(
"/"
)
)
--
segmEnd
;
sal_Int32
segmStart
=
(
url
.
lastIndexOf
(
'/'
,
segmEnd
)
+
1
);
if
(
segmStart
<
0
)
...
...
oox/source/vml/vmlinputstream.cxx
Dosyayı görüntüle @
7e72b9de
...
...
@@ -380,7 +380,7 @@ OString InputStream::readToElementBegin() throw (IOException, RuntimeException)
OString
InputStream
::
readToElementEnd
()
throw
(
IOException
,
RuntimeException
)
{
OString
aText
=
OUStringToOString
(
mxTextStrm
->
readString
(
maClosingBracket
,
sal_False
),
RTL_TEXTENCODING_ISO_8859_1
);
OSL_ENSURE
(
!
aText
.
isEmpty
()
&&
(
aText
[
aText
.
getLength
()
-
1
]
==
'>'
),
"InputStream::readToElementEnd - missing closing bracket of XML element"
);
OSL_ENSURE
(
aText
.
endsWith
(
">"
),
"InputStream::readToElementEnd - missing closing bracket of XML element"
);
return
aText
;
}
...
...
ucb/source/ucp/ext/ucpext_datasupplier.cxx
Dosyayı görüntüle @
7e72b9de
...
...
@@ -321,7 +321,7 @@ namespace ucb { namespace ucp { namespace ext
const
OUString
&
rId
(
m_pImpl
->
m_aResults
[
i_nIndex
].
sId
);
const
OUString
sRootURL
(
ContentProvider
::
getRootURL
()
);
OUString
sTitle
=
Content
::
decodeIdentifier
(
rId
.
copy
(
sRootURL
.
getLength
()
)
);
if
(
!
sTitle
.
isEmpty
()
&&
(
sTitle
[
sTitle
.
getLength
()
-
1
]
==
'/'
)
)
if
(
sTitle
.
endsWith
(
"/"
)
)
sTitle
=
sTitle
.
copy
(
0
,
sTitle
.
getLength
()
-
1
);
xRow
=
Content
::
getArtificialNodePropertyValues
(
m_pImpl
->
m_xContext
,
getResultSet
()
->
getProperties
(),
sTitle
);
}
...
...
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