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
877dfa37
Kaydet (Commit)
877dfa37
authored
Agu 25, 2016
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cid#1371288 Missing move assignment operator
Change-Id: I5181c76f558e1806de01f21422c715cc93f3cb3d
üst
37ffcb1c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
fillhatchattribute.cxx
drawinglayer/source/attribute/fillhatchattribute.cxx
+11
-0
fillhatchattribute.hxx
include/drawinglayer/attribute/fillhatchattribute.hxx
+2
-0
No files found.
drawinglayer/source/attribute/fillhatchattribute.cxx
Dosyayı görüntüle @
877dfa37
...
@@ -113,6 +113,11 @@ namespace drawinglayer
...
@@ -113,6 +113,11 @@ namespace drawinglayer
{
{
}
}
FillHatchAttribute
::
FillHatchAttribute
(
FillHatchAttribute
&&
rCandidate
)
:
mpFillHatchAttribute
(
std
::
move
(
rCandidate
.
mpFillHatchAttribute
))
{
}
FillHatchAttribute
::~
FillHatchAttribute
()
FillHatchAttribute
::~
FillHatchAttribute
()
{
{
}
}
...
@@ -128,6 +133,12 @@ namespace drawinglayer
...
@@ -128,6 +133,12 @@ namespace drawinglayer
return
*
this
;
return
*
this
;
}
}
FillHatchAttribute
&
FillHatchAttribute
::
operator
=
(
FillHatchAttribute
&&
rCandidate
)
{
mpFillHatchAttribute
=
std
::
move
(
rCandidate
.
mpFillHatchAttribute
);
return
*
this
;
}
bool
FillHatchAttribute
::
operator
==
(
const
FillHatchAttribute
&
rCandidate
)
const
bool
FillHatchAttribute
::
operator
==
(
const
FillHatchAttribute
&
rCandidate
)
const
{
{
// tdf#87509 default attr is always != non-default attr, even with same values
// tdf#87509 default attr is always != non-default attr, even with same values
...
...
include/drawinglayer/attribute/fillhatchattribute.hxx
Dosyayı görüntüle @
877dfa37
...
@@ -72,7 +72,9 @@ namespace drawinglayer
...
@@ -72,7 +72,9 @@ namespace drawinglayer
bool
bFillBackground
);
bool
bFillBackground
);
FillHatchAttribute
();
FillHatchAttribute
();
FillHatchAttribute
(
const
FillHatchAttribute
&
rCandidate
);
FillHatchAttribute
(
const
FillHatchAttribute
&
rCandidate
);
FillHatchAttribute
(
FillHatchAttribute
&&
rCandidate
);
FillHatchAttribute
&
operator
=
(
const
FillHatchAttribute
&
rCandidate
);
FillHatchAttribute
&
operator
=
(
const
FillHatchAttribute
&
rCandidate
);
FillHatchAttribute
&
operator
=
(
FillHatchAttribute
&&
rCandidate
);
~
FillHatchAttribute
();
~
FillHatchAttribute
();
// checks if the incarnation is default constructed
// checks if the incarnation is default constructed
...
...
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