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
11d743af
Kaydet (Commit)
11d743af
authored
Agu 30, 2013
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some OSL_WARN -> SAL_WARN_IF
Change-Id: I076adcd2f94c38a74f2dce618bc16efec577ed91
üst
2c6363eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
log-areas.dox
include/sal/log-areas.dox
+1
-0
urlobj.cxx
tools/source/fsys/urlobj.cxx
+10
-2
No files found.
include/sal/log-areas.dox
Dosyayı görüntüle @
11d743af
...
@@ -272,6 +272,7 @@ certain functionality.
...
@@ -272,6 +272,7 @@ certain functionality.
@li @c tools.memtools
@li @c tools.memtools
@li @c tools.rc - resource manager
@li @c tools.rc - resource manager
@li @c tools.stream - SvStream class
@li @c tools.stream - SvStream class
@li @c tools.urlobj - INetURLObject class
@section ucb
@section ucb
...
...
tools/source/fsys/urlobj.cxx
Dosyayı görüntüle @
11d743af
...
@@ -1732,7 +1732,11 @@ bool INetURLObject::convertRelToAbs(OUString const & rTheRelURIRef,
...
@@ -1732,7 +1732,11 @@ bool INetURLObject::convertRelToAbs(OUString const & rTheRelURIRef,
// Detect cases where a relative input could not be made absolute
// Detect cases where a relative input could not be made absolute
// because the given base URL is broken (most probably because it is
// because the given base URL is broken (most probably because it is
// empty):
// empty):
OSL_ASSERT
(
!
HasError
());
SAL_WARN_IF
(
HasError
(),
"tools.urlobj"
,
"cannot make <"
<<
rTheRelURIRef
<<
"> absolute against broken base <"
<<
GetMainURL
(
NO_DECODE
)
<<
">"
);
rWasAbsolute
=
false
;
rWasAbsolute
=
false
;
return
false
;
return
false
;
}
}
...
@@ -1859,7 +1863,11 @@ bool INetURLObject::convertRelToAbs(OUString const & rTheRelURIRef,
...
@@ -1859,7 +1863,11 @@ bool INetURLObject::convertRelToAbs(OUString const & rTheRelURIRef,
// Detect cases where a relative input could not be made absolute
// Detect cases where a relative input could not be made absolute
// because the given base URL is broken (most probably because it is
// because the given base URL is broken (most probably because it is
// empty):
// empty):
OSL_ASSERT
(
!
HasError
());
SAL_WARN_IF
(
HasError
(),
"tools.urlobj"
,
"cannot make <"
<<
rTheRelURIRef
<<
"> absolute against broken base <"
<<
GetMainURL
(
NO_DECODE
)
<<
">"
);
rWasAbsolute
=
false
;
rWasAbsolute
=
false
;
return
false
;
return
false
;
}
}
...
...
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