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
53b496da
Kaydet (Commit)
53b496da
authored
Tem 27, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:simplifybool
Change-Id: Id57ee3c09b11c3ce4820ed06a15f13866a10f19a
üst
3e4c5a35
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
8 deletions
+4
-8
DateTimeHelper.cxx
ucb/source/ucp/webdav/DateTimeHelper.cxx
+1
-1
SerfSession.cxx
ucb/source/ucp/webdav/SerfSession.cxx
+3
-7
No files found.
ucb/source/ucp/webdav/DateTimeHelper.cxx
Dosyayı görüntüle @
53b496da
...
...
@@ -242,7 +242,7 @@ bool DateTimeHelper::RFC2068_To_DateTime (const OUString& s,
}
}
return
(
found
)
?
true
:
false
;
return
found
;
}
bool
DateTimeHelper
::
convert
(
const
OUString
&
s
,
DateTime
&
dateTime
)
...
...
ucb/source/ucp/webdav/SerfSession.cxx
Dosyayı görüntüle @
53b496da
...
...
@@ -328,7 +328,7 @@ apr_status_t SerfSession::provideSerfCredentials( bool bGiveProvidedCredentialsA
theUserName
,
thePassWord
,
bCanUseSystemCreds
,
bGiveProvidedCredentialsASecondTry
?
sal_False
:
sal_True
);
bGiveProvidedCredentialsASecondTry
);
if
(
theRetVal
==
0
)
{
...
...
@@ -923,9 +923,7 @@ void SerfSession::COPY( const OUString & inSourceURL,
SerfUri
theSourceUri
(
inSourceURL
);
boost
::
shared_ptr
<
SerfRequestProcessor
>
aReqProc
(
createReqProc
(
theSourceUri
.
GetPath
()
)
);
apr_status_t
status
=
APR_SUCCESS
;
aReqProc
->
processCopy
(
inDestinationURL
,
(
inOverWrite
?
true
:
false
),
status
);
aReqProc
->
processCopy
(
inDestinationURL
,
inOverWrite
,
status
);
HandleError
(
aReqProc
);
}
...
...
@@ -946,9 +944,7 @@ void SerfSession::MOVE( const OUString & inSourceURL,
SerfUri
theSourceUri
(
inSourceURL
);
boost
::
shared_ptr
<
SerfRequestProcessor
>
aReqProc
(
createReqProc
(
theSourceUri
.
GetPath
()
)
);
apr_status_t
status
=
APR_SUCCESS
;
aReqProc
->
processMove
(
inDestinationURL
,
(
inOverWrite
?
true
:
false
),
status
);
aReqProc
->
processMove
(
inDestinationURL
,
inOverWrite
,
status
);
HandleError
(
aReqProc
);
}
...
...
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