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
97c8aaee
Kaydet (Commit)
97c8aaee
authored
Agu 14, 2012
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
use boost::scoped_ptr instead of raw pointers
Change-Id: Ie09c66a414ec5a949bf8b0e5a32a3bd0d603bd06
üst
232f2513
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
12 deletions
+6
-12
xestyle.cxx
sc/source/filter/excel/xestyle.cxx
+0
-6
xestyle.hxx
sc/source/filter/inc/xestyle.hxx
+6
-6
No files found.
sc/source/filter/excel/xestyle.cxx
Dosyayı görüntüle @
97c8aaee
...
@@ -3002,12 +3002,6 @@ XclExpDxf::XclExpDxf( const XclExpRoot& rRoot, XclExpCellAlign* pAlign, XclExpCe
...
@@ -3002,12 +3002,6 @@ XclExpDxf::XclExpDxf( const XclExpRoot& rRoot, XclExpCellAlign* pAlign, XclExpCe
XclExpDxf
::~
XclExpDxf
()
XclExpDxf
::~
XclExpDxf
()
{
{
delete
mpAlign
;
delete
mpBorder
;
delete
mpFont
;
delete
mpNumberFmt
;
delete
mpProt
;
delete
mpColor
;
}
}
void
XclExpDxf
::
SaveXml
(
XclExpXmlStream
&
rStrm
)
void
XclExpDxf
::
SaveXml
(
XclExpXmlStream
&
rStrm
)
...
...
sc/source/filter/inc/xestyle.hxx
Dosyayı görüntüle @
97c8aaee
...
@@ -748,12 +748,12 @@ public:
...
@@ -748,12 +748,12 @@ public:
virtual
void
SaveXml
(
XclExpXmlStream
&
rStrm
);
virtual
void
SaveXml
(
XclExpXmlStream
&
rStrm
);
private
:
private
:
XclExpCellAlign
*
mpAlign
;
boost
::
scoped_ptr
<
XclExpCellAlign
>
mpAlign
;
XclExpCellBorder
*
mpBorder
;
boost
::
scoped_ptr
<
XclExpCellBorder
>
mpBorder
;
XclExpFont
*
mpFont
;
boost
::
scoped_ptr
<
XclExpFont
>
mpFont
;
XclExpNumFmt
*
mpNumberFmt
;
boost
::
scoped_ptr
<
XclExpNumFmt
>
mpNumberFmt
;
XclExpCellProt
*
mpProt
;
boost
::
scoped_ptr
<
XclExpCellProt
>
mpProt
;
XclExpColor
*
mpColor
;
boost
::
scoped_ptr
<
XclExpColor
>
mpColor
;
};
};
class
XclExpDxfs
:
public
XclExpRecordBase
,
protected
XclExpRoot
class
XclExpDxfs
:
public
XclExpRecordBase
,
protected
XclExpRoot
...
...
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