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
71248cad
Kaydet (Commit)
71248cad
authored
Agu 14, 2012
tarafından
David Tardon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
the copy ctor can take const ref
Change-Id: I4ef23f084d918dbf8227610f64bb7c38680e377a
üst
331c4102
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
svdfppt.hxx
filter/inc/filter/msfilter/svdfppt.hxx
+5
-5
svdfppt.cxx
filter/source/msfilter/svdfppt.cxx
+5
-5
No files found.
filter/inc/filter/msfilter/svdfppt.hxx
Dosyayı görüntüle @
71248cad
...
@@ -945,11 +945,11 @@ struct PPTCharPropSet
...
@@ -945,11 +945,11 @@ struct PPTCharPropSet
void
SetColor
(
sal_uInt32
nColor
);
void
SetColor
(
sal_uInt32
nColor
);
explicit
PPTCharPropSet
(
sal_uInt32
nParagraph
);
explicit
PPTCharPropSet
(
sal_uInt32
nParagraph
);
PPTCharPropSet
(
PPTCharPropSet
&
rCharPropSet
);
PPTCharPropSet
(
const
PPTCharPropSet
&
rCharPropSet
);
PPTCharPropSet
(
PPTCharPropSet
&
rCharPropSet
,
sal_uInt32
nParagraph
);
PPTCharPropSet
(
const
PPTCharPropSet
&
rCharPropSet
,
sal_uInt32
nParagraph
);
~
PPTCharPropSet
();
~
PPTCharPropSet
();
PPTCharPropSet
&
operator
=
(
PPTCharPropSet
&
rCharPropSet
);
PPTCharPropSet
&
operator
=
(
const
PPTCharPropSet
&
rCharPropSet
);
private
:
private
:
void
ImplMakeUnique
();
void
ImplMakeUnique
();
...
@@ -1106,12 +1106,12 @@ public:
...
@@ -1106,12 +1106,12 @@ public:
PPTPortionObj
(
const
PPTStyleSheet
&
,
sal_uInt32
nInstance
,
sal_uInt32
nDepth
);
PPTPortionObj
(
const
PPTStyleSheet
&
,
sal_uInt32
nInstance
,
sal_uInt32
nDepth
);
PPTPortionObj
(
PPTPortionObj
(
PPTCharPropSet
&
,
const
PPTCharPropSet
&
,
const
PPTStyleSheet
&
,
const
PPTStyleSheet
&
,
sal_uInt32
nInstance
,
sal_uInt32
nInstance
,
sal_uInt32
nDepth
sal_uInt32
nDepth
);
);
PPTPortionObj
(
PPTPortionObj
&
);
PPTPortionObj
(
const
PPTPortionObj
&
);
~
PPTPortionObj
();
~
PPTPortionObj
();
// the following function should be removed during next full update
// the following function should be removed during next full update
...
...
filter/source/msfilter/svdfppt.cxx
Dosyayı görüntüle @
71248cad
...
@@ -4323,7 +4323,7 @@ PPTCharPropSet::PPTCharPropSet( sal_uInt32 nParagraph ) :
...
@@ -4323,7 +4323,7 @@ PPTCharPropSet::PPTCharPropSet( sal_uInt32 nParagraph ) :
mnLanguage[ 0 ] = mnLanguage[ 1 ] = mnLanguage[ 2 ] = 0;
mnLanguage[ 0 ] = mnLanguage[ 1 ] = mnLanguage[ 2 ] = 0;
}
}
PPTCharPropSet
::
PPTCharPropSet
(
PPTCharPropSet
&
rCharPropSet
)
PPTCharPropSet::PPTCharPropSet(
const
PPTCharPropSet& rCharPropSet )
{
{
pCharSet = rCharPropSet.pCharSet;
pCharSet = rCharPropSet.pCharSet;
pCharSet->mnRefCount++;
pCharSet->mnRefCount++;
...
@@ -4337,7 +4337,7 @@ PPTCharPropSet::PPTCharPropSet( PPTCharPropSet& rCharPropSet )
...
@@ -4337,7 +4337,7 @@ PPTCharPropSet::PPTCharPropSet( PPTCharPropSet& rCharPropSet )
mnLanguage[ 2 ] = rCharPropSet.mnLanguage[ 2 ];
mnLanguage[ 2 ] = rCharPropSet.mnLanguage[ 2 ];
}
}
PPTCharPropSet
::
PPTCharPropSet
(
PPTCharPropSet
&
rCharPropSet
,
sal_uInt32
nParagraph
)
PPTCharPropSet::PPTCharPropSet(
const
PPTCharPropSet& rCharPropSet, sal_uInt32 nParagraph )
{
{
pCharSet = rCharPropSet.pCharSet;
pCharSet = rCharPropSet.pCharSet;
pCharSet->mnRefCount++;
pCharSet->mnRefCount++;
...
@@ -4356,7 +4356,7 @@ PPTCharPropSet::~PPTCharPropSet()
...
@@ -4356,7 +4356,7 @@ PPTCharPropSet::~PPTCharPropSet()
delete mpFieldItem;
delete mpFieldItem;
}
}
PPTCharPropSet
&
PPTCharPropSet
::
operator
=
(
PPTCharPropSet
&
rCharPropSet
)
PPTCharPropSet& PPTCharPropSet::operator=(
const
PPTCharPropSet& rCharPropSet )
{
{
if ( this != &rCharPropSet )
if ( this != &rCharPropSet )
{
{
...
@@ -5247,7 +5247,7 @@ PPTPortionObj::PPTPortionObj( const PPTStyleSheet& rStyleSheet, sal_uInt32 nInst
...
@@ -5247,7 +5247,7 @@ PPTPortionObj::PPTPortionObj( const PPTStyleSheet& rStyleSheet, sal_uInt32 nInst
{
{
}
}
PPTPortionObj
::
PPTPortionObj
(
PPTCharPropSet
&
rCharPropSet
,
const
PPTStyleSheet
&
rStyleSheet
,
sal_uInt32
nInstance
,
sal_uInt32
nDepth
)
:
PPTPortionObj::PPTPortionObj(
const
PPTCharPropSet& rCharPropSet, const PPTStyleSheet& rStyleSheet, sal_uInt32 nInstance, sal_uInt32 nDepth ) :
PPTCharPropSet ( rCharPropSet ),
PPTCharPropSet ( rCharPropSet ),
mrStyleSheet ( rStyleSheet ),
mrStyleSheet ( rStyleSheet ),
mnInstance ( nInstance ),
mnInstance ( nInstance ),
...
@@ -5255,7 +5255,7 @@ PPTPortionObj::PPTPortionObj( PPTCharPropSet& rCharPropSet, const PPTStyleSheet&
...
@@ -5255,7 +5255,7 @@ PPTPortionObj::PPTPortionObj( PPTCharPropSet& rCharPropSet, const PPTStyleSheet&
{
{
}
}
PPTPortionObj
::
PPTPortionObj
(
PPTPortionObj
&
rPortionObj
)
:
PPTPortionObj::PPTPortionObj(
const
PPTPortionObj& rPortionObj ) :
PPTCharPropSet ( rPortionObj ),
PPTCharPropSet ( rPortionObj ),
mrStyleSheet ( rPortionObj.mrStyleSheet ),
mrStyleSheet ( rPortionObj.mrStyleSheet ),
mnInstance ( rPortionObj.mnInstance ),
mnInstance ( rPortionObj.mnInstance ),
...
...
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