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
402bb706
Kaydet (Commit)
402bb706
authored
Eyl 26, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
filter: std::auto_ptr -> std::unique_ptr
Change-Id: Id1d0392e1dbd33de326aa2bd8cbcf8cc03bf7c90
üst
a0f3b9f9
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
15 deletions
+9
-15
eos2met.cxx
filter/source/graphicfilter/eos2met/eos2met.cxx
+1
-1
eschesdo.cxx
filter/source/msfilter/eschesdo.cxx
+1
-3
svgdialog.hxx
filter/source/svg/svgdialog.hxx
+1
-1
svgwriter.hxx
filter/source/svg/svgwriter.hxx
+2
-2
escherex.hxx
include/filter/msfilter/escherex.hxx
+3
-7
mstoolbar.hxx
include/filter/msfilter/mstoolbar.hxx
+1
-1
No files found.
filter/source/graphicfilter/eos2met/eos2met.cxx
Dosyayı görüntüle @
402bb706
...
...
@@ -156,7 +156,7 @@ private:
sal_uInt32
nWrittenBitmaps
;
// number of already written Bitmaps
sal_uInt32
nActBitmapPercent
;
// percentage of the next bitmap that's already written
::
std
::
auto_ptr
<
VirtualDevice
>
apDummyVDev
;
::
std
::
unique_ptr
<
VirtualDevice
>
apDummyVDev
;
OutputDevice
*
pCompDev
;
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
task
::
XStatusIndicator
>
xStatusIndicator
;
...
...
filter/source/msfilter/eschesdo.cxx
Dosyayı görüntüle @
402bb706
...
...
@@ -267,9 +267,7 @@ sal_uInt32 ImplEESdrWriter::ImplWriteShape( ImplEESdrObject& rObj,
aPropOpt
.
AddOpt
(
ESCHER_Prop_wzName
,
aShapeName
);
if
(
InteractionInfo
*
pInteraction
=
mpHostAppData
?
mpHostAppData
->
GetInteractionInfo
()
:
NULL
)
{
SAL_WNODEPRECATED_DECLARATIONS_PUSH
const
std
::
auto_ptr
<
SvMemoryStream
>&
pMemStrm
=
pInteraction
->
getHyperlinkRecord
();
SAL_WNODEPRECATED_DECLARATIONS_POP
const
std
::
unique_ptr
<
SvMemoryStream
>&
pMemStrm
=
pInteraction
->
getHyperlinkRecord
();
if
(
pMemStrm
.
get
()
)
{
pMemStrm
->
ObjectOwnsMemory
(
false
);
...
...
filter/source/svg/svgdialog.hxx
Dosyayı görüntüle @
402bb706
...
...
@@ -39,7 +39,7 @@ class SVGDialog : public ::svt::OGenericUnoDialog,
{
private
:
::
std
::
auto_ptr
<
ResMgr
>
mapResMgr
;
::
std
::
unique_ptr
<
ResMgr
>
mapResMgr
;
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>
maMediaDescriptor
;
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>
maFilterData
;
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
lang
::
XComponent
>
mxSrcDoc
;
...
...
filter/source/svg/svgwriter.hxx
Dosyayı görüntüle @
402bb706
...
...
@@ -132,7 +132,7 @@ struct SVGShapeDescriptor
Color
maShapeLineColor
;
sal_Int32
mnStrokeWidth
;
SvtGraphicStroke
::
DashArray
maDashArray
;
::
std
::
auto
_ptr
<
Gradient
>
mapShapeGradient
;
::
std
::
unique
_ptr
<
Gradient
>
mapShapeGradient
;
OUString
maId
;
basegfx
::
B2DLineJoin
maLineJoin
;
...
...
@@ -300,7 +300,7 @@ private:
sal_Int32
mnCurMaskId
;
sal_Int32
mnCurPatternId
;
::
std
::
stack
<
SVGAttributeWriter
*
>
maContextStack
;
::
std
::
auto_ptr
<
SVGShapeDescriptor
>
mapCurShape
;
::
std
::
unique_ptr
<
SVGShapeDescriptor
>
mapCurShape
;
SVGExport
&
mrExport
;
SVGFontExport
&
mrFontExport
;
SVGAttributeWriter
*
mpContext
;
...
...
include/filter/msfilter/escherex.hxx
Dosyayı görüntüle @
402bb706
...
...
@@ -1415,9 +1415,7 @@ public:
class
InteractionInfo
{
bool
mbHasInteraction
;
SAL_WNODEPRECATED_DECLARATIONS_PUSH
std
::
auto_ptr
<
SvMemoryStream
>
mpHyperlinkRecord
;
SAL_WNODEPRECATED_DECLARATIONS_POP
std
::
unique_ptr
<
SvMemoryStream
>
mpHyperlinkRecord
;
InteractionInfo
();
public
:
...
...
@@ -1426,9 +1424,7 @@ public:
mpHyperlinkRecord
.
reset
(
pStream
);
}
bool
hasInteraction
()
{
return
mbHasInteraction
;
}
SAL_WNODEPRECATED_DECLARATIONS_PUSH
const
std
::
auto_ptr
<
SvMemoryStream
>&
getHyperlinkRecord
()
{
return
mpHyperlinkRecord
;
}
SAL_WNODEPRECATED_DECLARATIONS_POP
const
std
::
unique_ptr
<
SvMemoryStream
>&
getHyperlinkRecord
()
{
return
mpHyperlinkRecord
;
}
};
class
EscherExHostAppData
...
...
@@ -1567,7 +1563,7 @@ class ImplEscherExSdr;
class
MSFILTER_DLLPUBLIC
EscherEx
:
public
EscherPersistTable
{
protected
:
typedef
::
std
::
auto
_ptr
<
ImplEscherExSdr
>
ImplEscherExSdrPtr
;
typedef
::
std
::
unique
_ptr
<
ImplEscherExSdr
>
ImplEscherExSdrPtr
;
EscherExGlobalRef
mxGlobal
;
ImplEscherExSdrPtr
mpImplEscherExSdr
;
...
...
include/filter/msfilter/mstoolbar.hxx
Dosyayı görüntüle @
402bb706
...
...
@@ -44,7 +44,7 @@ class MSFILTER_DLLPUBLIC CustomToolBarImportHelper
css
::
uno
::
Reference
<
css
::
graphic
::
XGraphic
>
image
;
};
std
::
vector
<
iconcontrolitem
>
iconcommands
;
std
::
auto
_ptr
<
MSOCommandConvertor
>
pMSOCmdConvertor
;
std
::
unique
_ptr
<
MSOCommandConvertor
>
pMSOCmdConvertor
;
css
::
uno
::
Reference
<
css
::
ui
::
XUIConfigurationManagerSupplier
>
m_xCfgSupp
;
css
::
uno
::
Reference
<
css
::
ui
::
XUIConfigurationManager
>
m_xAppCfgMgr
;
SfxObjectShell
&
mrDocSh
;
...
...
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