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
ef8e7eab
Kaydet (Commit)
ef8e7eab
authored
Eki 21, 2014
tarafından
Matúš Kukan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
There is no XZipOutputEntry interface
Change-Id: Ib8fa3351ba25416a13d6c8bf63bd5fc8e43703c5
üst
3e3b8483
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
10 deletions
+4
-10
ZipOutputEntry.hxx
package/inc/ZipOutputEntry.hxx
+2
-6
ZipOutputEntry.cxx
package/source/zipapi/ZipOutputEntry.cxx
+2
-4
No files found.
package/inc/ZipOutputEntry.hxx
Dosyayı görüntüle @
ef8e7eab
...
@@ -19,7 +19,6 @@
...
@@ -19,7 +19,6 @@
#ifndef INCLUDED_PACKAGE_INC_ZIPOUTPUTENTRY_HXX
#ifndef INCLUDED_PACKAGE_INC_ZIPOUTPUTENTRY_HXX
#define INCLUDED_PACKAGE_INC_ZIPOUTPUTENTRY_HXX
#define INCLUDED_PACKAGE_INC_ZIPOUTPUTENTRY_HXX
#include <com/sun/star/io/IOException.hpp>
#include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/xml/crypto/XCipherContext.hpp>
#include <com/sun/star/xml/crypto/XCipherContext.hpp>
...
@@ -56,11 +55,8 @@ public:
...
@@ -56,11 +55,8 @@ public:
css
::
uno
::
Sequence
<
sal_Int8
>
getData
();
css
::
uno
::
Sequence
<
sal_Int8
>
getData
();
// XZipOutputEntry interfaces
void
closeEntry
();
void
SAL_CALL
closeEntry
(
)
void
write
(
const
css
::
uno
::
Sequence
<
sal_Int8
>&
rBuffer
,
sal_Int32
nNewOffset
,
sal_Int32
nNewLength
);
throw
(
::
com
::
sun
::
star
::
io
::
IOException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
void
SAL_CALL
write
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>&
rBuffer
,
sal_Int32
nNewOffset
,
sal_Int32
nNewLength
)
throw
(
::
com
::
sun
::
star
::
io
::
IOException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
private
:
private
:
void
doDeflate
();
void
doDeflate
();
...
...
package/source/zipapi/ZipOutputEntry.cxx
Dosyayı görüntüle @
ef8e7eab
...
@@ -68,8 +68,7 @@ uno::Sequence< sal_Int8 > ZipOutputEntry::getData()
...
@@ -68,8 +68,7 @@ uno::Sequence< sal_Int8 > ZipOutputEntry::getData()
return
m_pBuffer
->
getSequence
();
return
m_pBuffer
->
getSequence
();
}
}
void
SAL_CALL
ZipOutputEntry
::
closeEntry
()
void
ZipOutputEntry
::
closeEntry
()
throw
(
IOException
,
RuntimeException
)
{
{
m_aDeflater
.
finish
();
m_aDeflater
.
finish
();
while
(
!
m_aDeflater
.
finished
())
while
(
!
m_aDeflater
.
finished
())
...
@@ -120,8 +119,7 @@ void SAL_CALL ZipOutputEntry::closeEntry()
...
@@ -120,8 +119,7 @@ void SAL_CALL ZipOutputEntry::closeEntry()
}
}
}
}
void
SAL_CALL
ZipOutputEntry
::
write
(
const
Sequence
<
sal_Int8
>&
rBuffer
,
sal_Int32
nNewOffset
,
sal_Int32
nNewLength
)
void
ZipOutputEntry
::
write
(
const
Sequence
<
sal_Int8
>&
rBuffer
,
sal_Int32
nNewOffset
,
sal_Int32
nNewLength
)
throw
(
IOException
,
RuntimeException
)
{
{
if
(
!
m_aDeflater
.
finished
())
if
(
!
m_aDeflater
.
finished
())
{
{
...
...
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