summaryrefslogtreecommitdiff
path: root/include/basegfx/color
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-02 21:32:35 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-03 09:58:27 +0000
commite4a84c625f28b947816b07654fbe912a466b824a (patch)
treea1c907eda27fa5c44e129edb6bf1d353f7120ffc /include/basegfx/color
parent0621795c54956c89dbb2df585df8336b1f86f7ef (diff)
default copy ctor and assignment operator are good enough
and block default move equivalents Change-Id: I360860512d2c88f8688685f4e751ded6335549da Reviewed-on: https://gerrit.libreoffice.org/32656 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/basegfx/color')
-rw-r--r--include/basegfx/color/bcolor.hxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/basegfx/color/bcolor.hxx b/include/basegfx/color/bcolor.hxx
index 62cb98bb8d5b..d0854e63a579 100644
--- a/include/basegfx/color/bcolor.hxx
+++ b/include/basegfx/color/bcolor.hxx
@@ -69,15 +69,6 @@ namespace basegfx
: B3DTuple(fLuminosity, fLuminosity, fLuminosity)
{}
- /** Create a copy of a Color
-
- @param rVec
- The Color which will be copied.
- */
- BColor(const BColor& rVec)
- : B3DTuple(rVec)
- {}
-
/** constructor with tuple to allow copy-constructing
from B3DTuple-based classes
*/
@@ -85,9 +76,6 @@ namespace basegfx
: B3DTuple(rTuple)
{}
- ~BColor()
- {}
-
// data access read
double getRed() const { return mfX; }
double getGreen() const { return mfY; }