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
40b16e07
Kaydet (Commit)
40b16e07
authored
Nis 24, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:simplifybool
Change-Id: I1890703bf1277ad83f578e1527db81a6e8f49fd3
üst
877fe59c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
ftpcontent.cxx
ucb/source/ucp/ftp/ftpcontent.cxx
+2
-4
DateTimeHelper.cxx
ucb/source/ucp/webdav-neon/DateTimeHelper.cxx
+1
-1
No files found.
ucb/source/ucp/ftp/ftpcontent.cxx
Dosyayı görüntüle @
40b16e07
...
...
@@ -850,10 +850,8 @@ Reference< XRow > FTPContent::getPropertyValues(
:
OUString
(
FTP_FILE
)
);
else
if
(
Name
==
"IsReadOnly"
)
xRow
->
appendBoolean
(
seqProp
[
i
],
aDirEntry
.
m_nMode
&
INETCOREFTP_FILEMODE_WRITE
?
false
:
true
);
(
aDirEntry
.
m_nMode
&
INETCOREFTP_FILEMODE_WRITE
)
==
0
);
else
if
(
Name
==
"IsDocument"
)
xRow
->
appendBoolean
(
seqProp
[
i
],
(
aDirEntry
.
m_nMode
&
...
...
ucb/source/ucp/webdav-neon/DateTimeHelper.cxx
Dosyayı görüntüle @
40b16e07
...
...
@@ -232,7 +232,7 @@ bool DateTimeHelper::RFC2068_To_DateTime (const OUString& s,
}
}
return
(
found
)
?
true
:
false
;
return
found
!=
0
;
}
bool
DateTimeHelper
::
convert
(
const
OUString
&
s
,
DateTime
&
dateTime
)
...
...
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