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
b4bd157d
Kaydet (Commit)
b4bd157d
authored
Kas 17, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
use unique_ptr for pImpl in writerperfect/
Change-Id: I23ab4d214ed01073f26cbbf2e88732ccde4ebc10
üst
6ceb4e2d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
8 deletions
+4
-8
DirectoryStream.hxx
writerperfect/inc/DirectoryStream.hxx
+2
-3
WPXSvInputStream.hxx
writerperfect/inc/WPXSvInputStream.hxx
+2
-3
DirectoryStream.cxx
writerperfect/source/common/DirectoryStream.cxx
+0
-1
WPXSvInputStream.cxx
writerperfect/source/common/WPXSvInputStream.cxx
+0
-1
No files found.
writerperfect/inc/DirectoryStream.hxx
Dosyayı görüntüle @
b4bd157d
...
@@ -11,10 +11,9 @@
...
@@ -11,10 +11,9 @@
#define INCLUDED_WRITERPERFECT_DIRECTORYSTREAM_HXX
#define INCLUDED_WRITERPERFECT_DIRECTORYSTREAM_HXX
#include <librevenge-stream/librevenge-stream.h>
#include <librevenge-stream/librevenge-stream.h>
#include <com/sun/star/uno/Reference.h>
#include <com/sun/star/uno/Reference.h>
#include <writerperfectdllapi.h>
#include <writerperfectdllapi.h>
#include <memory>
namespace
com
namespace
com
{
{
...
@@ -57,7 +56,7 @@ public:
...
@@ -57,7 +56,7 @@ public:
virtual
bool
isEnd
()
override
;
virtual
bool
isEnd
()
override
;
private
:
private
:
Impl
*
m_pImpl
;
std
::
unique_ptr
<
Impl
>
m_pImpl
;
};
};
}
}
...
...
writerperfect/inc/WPXSvInputStream.hxx
Dosyayı görüntüle @
b4bd157d
...
@@ -11,10 +11,9 @@
...
@@ -11,10 +11,9 @@
#define INCLUDED_WRITERPERFECT_WPXSVINPUTSTREAM_HXX
#define INCLUDED_WRITERPERFECT_WPXSVINPUTSTREAM_HXX
#include <librevenge-stream/librevenge-stream.h>
#include <librevenge-stream/librevenge-stream.h>
#include <com/sun/star/uno/Reference.h>
#include <com/sun/star/uno/Reference.h>
#include <writerperfectdllapi.h>
#include <writerperfectdllapi.h>
#include <memory>
namespace
com
namespace
com
{
{
...
@@ -55,7 +54,7 @@ public:
...
@@ -55,7 +54,7 @@ public:
virtual
bool
isEnd
()
override
;
virtual
bool
isEnd
()
override
;
private
:
private
:
WPXSvInputStreamImpl
*
mpImpl
;
std
::
unique_ptr
<
WPXSvInputStreamImpl
>
mpImpl
;
};
};
}
}
...
...
writerperfect/source/common/DirectoryStream.cxx
Dosyayı görüntüle @
b4bd157d
...
@@ -111,7 +111,6 @@ DirectoryStream::DirectoryStream(const com::sun::star::uno::Reference<com::sun::
...
@@ -111,7 +111,6 @@ DirectoryStream::DirectoryStream(const com::sun::star::uno::Reference<com::sun::
DirectoryStream
::~
DirectoryStream
()
DirectoryStream
::~
DirectoryStream
()
{
{
delete
m_pImpl
;
}
}
DirectoryStream
*
DirectoryStream
::
createForParent
(
const
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
ucb
::
XContent
>
&
xContent
)
DirectoryStream
*
DirectoryStream
::
createForParent
(
const
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
ucb
::
XContent
>
&
xContent
)
...
...
writerperfect/source/common/WPXSvInputStream.cxx
Dosyayı görüntüle @
b4bd157d
...
@@ -817,7 +817,6 @@ WPXSvInputStream::WPXSvInputStream(Reference< XInputStream > xStream) :
...
@@ -817,7 +817,6 @@ WPXSvInputStream::WPXSvInputStream(Reference< XInputStream > xStream) :
WPXSvInputStream
::~
WPXSvInputStream
()
WPXSvInputStream
::~
WPXSvInputStream
()
{
{
delete
mpImpl
;
}
}
#define BUFFER_MAX 65536
#define BUFFER_MAX 65536
...
...
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