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
4668725a
Kaydet (Commit)
4668725a
authored
Tem 16, 2003
tarafından
Jens-Heiner Rechtien
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
INTEGRATION: CWS ooo11rc2 (1.2.110); FILE MERGED
2003/07/07 10:22:53 mh 1.2.110.1: join from ooo11rc, #i10000#
üst
d732aed4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
zip.cxx
filter/source/placeware/zip.cxx
+10
-10
No files found.
filter/source/placeware/zip.cxx
Dosyayı görüntüle @
4668725a
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: zip.cxx,v $
*
* $Revision: 1.
2
$
* $Revision: 1.
3
$
*
* last change: $Author:
cl $ $Date: 2002-10-23 19:30:48
$
* last change: $Author:
hr $ $Date: 2003-07-16 18:01:27
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -89,7 +89,7 @@ struct ZipEntry
};
/** put one byte inside this stream */
static
osl
::
File
::
RC
put
c
(
unsigned
char
c
,
osl
::
File
&
rFile
)
static
osl
::
File
::
RC
put
C
(
unsigned
char
c
,
osl
::
File
&
rFile
)
{
sal_uInt64
nBytesWritten
;
osl
::
File
::
RC
nRC
=
rFile
.
write
(
&
c
,
1
,
nBytesWritten
);
...
...
@@ -103,9 +103,9 @@ void ZipFile::writeShort( sal_Int16 s)
{
if
(
!
isError
()
)
{
mnRC
=
put
c
(
s
&
0xff
,
mrFile
);
mnRC
=
put
C
(
s
&
0xff
,
mrFile
);
if
(
!
isError
()
)
mnRC
=
put
c
(
(
s
>>
8
)
&
0xff
,
mrFile
);
mnRC
=
put
C
(
(
s
>>
8
)
&
0xff
,
mrFile
);
}
}
...
...
@@ -115,16 +115,16 @@ void ZipFile::writeLong( sal_Int32 l )
{
if
(
!
isError
()
)
{
mnRC
=
put
c
(
l
&
0xff
,
mrFile
);
mnRC
=
put
C
(
l
&
0xff
,
mrFile
);
if
(
!
isError
()
)
{
mnRC
=
put
c
((
l
>>
8
)
&
0xff
,
mrFile
);
mnRC
=
put
C
((
l
>>
8
)
&
0xff
,
mrFile
);
if
(
!
isError
()
)
{
mnRC
=
put
c
((
l
>>
16
)
&
0xff
,
mrFile
);
mnRC
=
put
C
((
l
>>
16
)
&
0xff
,
mrFile
);
if
(
!
isError
()
)
{
mnRC
=
put
c
((
l
>>
24
)
&
0xff
,
mrFile
);
mnRC
=
put
C
((
l
>>
24
)
&
0xff
,
mrFile
);
}
}
}
...
...
@@ -178,7 +178,7 @@ void ZipFile::writeDummyLocalHeader(ZipEntry *e)
e
->
offset
=
static_cast
<
sal_Int32
>
(
nPosition
);
for
(
i
=
0
;
(
i
<
len
)
&&
!
isError
();
++
i
)
mnRC
=
put
c
(
0
,
mrFile
);
mnRC
=
put
C
(
0
,
mrFile
);
}
}
...
...
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