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
1e379e3c
Kaydet (Commit)
1e379e3c
authored
Agu 15, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix Windows build after my String->OUString changes
Change-Id: Id3ae8e34fa8ca8c7a47ddaa9cf5183fec48457fa
üst
5dc6b955
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
inettbc.cxx
svtools/source/control/inettbc.cxx
+3
-3
No files found.
svtools/source/control/inettbc.cxx
Dosyayı görüntüle @
1e379e3c
...
...
@@ -509,7 +509,7 @@ OUString SvtURLBox::ParseSmart( OUString aText, OUString aBaseURL, const OUStrin
// HRO: INetURLObject::smatRel2Abs does not recognize '\\' as a relative path
// but in case of "\\\\" INetURLObject is right - this is an absolute path !
if
(
aText
.
Search
(
'\\'
)
==
0
&&
(
aText
.
Len
()
<
2
||
aText
.
GetChar
(
1
)
!=
'\\'
)
)
if
(
aText
.
indexOf
(
'\\'
)
==
0
&&
(
aText
.
getLength
()
<
2
||
aText
[
1
]
!=
'\\'
)
)
{
// cut to first segment
String
aTmp
=
INetURLObject
::
GetScheme
(
eBaseProt
);
...
...
@@ -517,7 +517,7 @@ OUString SvtURLBox::ParseSmart( OUString aText, OUString aBaseURL, const OUStrin
aTmp
+=
String
(
aObj
.
getName
(
0
,
true
,
INetURLObject
::
DECODE_WITH_CHARSET
));
aObj
.
SetURL
(
aTmp
);
aSmart
.
Erase
(
0
,
1
);
aSmart
=
aSmart
.
copy
(
1
);
}
#endif
// base URL must be a directory !
...
...
@@ -1207,7 +1207,7 @@ OUString SvtURLBox::GetURL()
// erase trailing spaces on Windows since thay are invalid on this OS and
// most of the time they are inserted by accident via copy / paste
aText
=
comphelper
::
string
::
stripEnd
(
aText
,
' '
);
if
(
!
aText
.
Len
()
)
if
(
aText
.
isEmpty
()
)
return
aText
;
// #i9739#
#endif
...
...
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