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
533a8a9e
Kaydet (Commit)
533a8a9e
authored
Agu 13, 2012
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove some auto_ptr from xecontent
Change-Id: Idef77ba4ce419aec26476ed027ac1a3c3fc41eef
üst
1885266f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
16 deletions
+6
-16
xecontent.cxx
sc/source/filter/excel/xecontent.cxx
+2
-6
xecontent.hxx
sc/source/filter/inc/xecontent.hxx
+4
-10
No files found.
sc/source/filter/excel/xecontent.cxx
Dosyayı görüntüle @
533a8a9e
...
...
@@ -677,9 +677,7 @@ XclExpCFImpl::XclExpCFImpl( const XclExpRoot& rRoot, const ScCondFormatEntry& rF
XclExpFormulaCompiler
&
rFmlaComp
=
GetFormulaCompiler
();
SAL_WNODEPRECATED_DECLARATIONS_PUSH
::
std
::
auto_ptr
<
ScTokenArray
>
xScTokArr
(
mrFormatEntry
.
CreateTokenArry
(
0
)
);
SAL_WNODEPRECATED_DECLARATIONS_POP
boost
::
scoped_ptr
<
ScTokenArray
>
xScTokArr
(
mrFormatEntry
.
CreateTokenArry
(
0
)
);
mxTokArr1
=
rFmlaComp
.
CreateFormula
(
EXC_FMLATYPE_CONDFMT
,
*
xScTokArr
);
if
(
bFmla2
)
...
...
@@ -1284,9 +1282,7 @@ XclExpDV::XclExpDV( const XclExpRoot& rRoot, sal_uLong nScHandle ) :
// formulas
XclExpFormulaCompiler
&
rFmlaComp
=
GetFormulaCompiler
();
SAL_WNODEPRECATED_DECLARATIONS_PUSH
::
std
::
auto_ptr
<
ScTokenArray
>
xScTokArr
;
SAL_WNODEPRECATED_DECLARATIONS_POP
boost
::
scoped_ptr
<
ScTokenArray
>
xScTokArr
;
// first formula
xScTokArr
.
reset
(
pValData
->
CreateTokenArry
(
0
)
);
...
...
sc/source/filter/inc/xecontent.hxx
Dosyayı görüntüle @
533a8a9e
...
...
@@ -72,9 +72,7 @@ public:
virtual
void
SaveXml
(
XclExpXmlStream
&
rStrm
);
private
:
SAL_WNODEPRECATED_DECLARATIONS_PUSH
typedef
::
std
::
auto_ptr
<
XclExpSstImpl
>
XclExpSstImplPtr
;
SAL_WNODEPRECATED_DECLARATIONS_POP
typedef
boost
::
scoped_ptr
<
XclExpSstImpl
>
XclExpSstImplPtr
;
XclExpSstImplPtr
mxImpl
;
};
...
...
@@ -131,10 +129,8 @@ private:
virtual
void
WriteBody
(
XclExpStream
&
rStrm
);
private
:
SAL_WNODEPRECATED_DECLARATIONS_PUSH
typedef
::
std
::
auto_ptr
<
String
>
StringPtr
;
typedef
::
std
::
auto_ptr
<
SvStream
>
SvStreamPtr
;
SAL_WNODEPRECATED_DECLARATIONS_POP
typedef
boost
::
scoped_ptr
<
String
>
StringPtr
;
typedef
boost
::
scoped_ptr
<
SvStream
>
SvStreamPtr
;
ScAddress
maScPos
;
/// Position of the hyperlink.
StringPtr
mxRepr
;
/// Cell representation text.
...
...
@@ -190,9 +186,7 @@ private:
virtual
void
WriteBody
(
XclExpStream
&
rStrm
);
private
:
SAL_WNODEPRECATED_DECLARATIONS_PUSH
typedef
::
std
::
auto_ptr
<
XclExpCFImpl
>
XclExpCFImplPtr
;
SAL_WNODEPRECATED_DECLARATIONS_POP
typedef
boost
::
scoped_ptr
<
XclExpCFImpl
>
XclExpCFImplPtr
;
XclExpCFImplPtr
mxImpl
;
};
...
...
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