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
926392de
Kaydet (Commit)
926392de
authored
May 13, 2015
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
PropertyNameSupplier: use std::unique_ptr<>
Change-Id: I1e4cf3241bee20677f61ea334efc3aa4e490a016
üst
b1a9498a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
PropertyIds.cxx
writerfilter/source/dmapper/PropertyIds.cxx
+1
-2
PropertyIds.hxx
writerfilter/source/dmapper/PropertyIds.hxx
+2
-1
No files found.
writerfilter/source/dmapper/PropertyIds.cxx
Dosyayı görüntüle @
926392de
...
@@ -34,14 +34,13 @@ struct PropertyNameSupplier_Impl
...
@@ -34,14 +34,13 @@ struct PropertyNameSupplier_Impl
PropertyNameSupplier
::
PropertyNameSupplier
()
:
PropertyNameSupplier
::
PropertyNameSupplier
()
:
m_pImpl
(
new
PropertyNameSupplier_Impl
)
m_pImpl
(
new
PropertyNameSupplier_Impl
()
)
{
{
}
}
PropertyNameSupplier
::~
PropertyNameSupplier
()
PropertyNameSupplier
::~
PropertyNameSupplier
()
{
{
delete
m_pImpl
;
}
}
...
...
writerfilter/source/dmapper/PropertyIds.hxx
Dosyayı görüntüle @
926392de
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
#ifndef INCLUDED_WRITERFILTER_SOURCE_DMAPPER_PROPERTYIDS_HXX
#ifndef INCLUDED_WRITERFILTER_SOURCE_DMAPPER_PROPERTYIDS_HXX
#define INCLUDED_WRITERFILTER_SOURCE_DMAPPER_PROPERTYIDS_HXX
#define INCLUDED_WRITERFILTER_SOURCE_DMAPPER_PROPERTYIDS_HXX
#include <memory>
namespace
writerfilter
{
namespace
writerfilter
{
namespace
dmapper
{
namespace
dmapper
{
...
@@ -380,7 +381,7 @@ enum PropertyIds
...
@@ -380,7 +381,7 @@ enum PropertyIds
struct
PropertyNameSupplier_Impl
;
struct
PropertyNameSupplier_Impl
;
class
PropertyNameSupplier
class
PropertyNameSupplier
{
{
PropertyNameSupplier_Impl
*
m_pImpl
;
std
::
unique_ptr
<
PropertyNameSupplier_Impl
>
m_pImpl
;
public
:
public
:
PropertyNameSupplier
();
PropertyNameSupplier
();
~
PropertyNameSupplier
();
~
PropertyNameSupplier
();
...
...
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