diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-12-18 18:26:18 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-12-18 18:26:18 +0000 |
commit | 4f3f5e15f77272291946671fdf98a1cfb530dd2e (patch) | |
tree | 9443e7df739a06581b1fb80faebffb22b5aa332b /slideshow/source | |
parent | 36643c593cf01b8a722a11a561505f444cf8f865 (diff) |
Resoves: rhbz#663857 font color missing; C++ FAQ 10.3 doomage
Diffstat (limited to 'slideshow/source')
-rw-r--r-- | slideshow/source/engine/color.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slideshow/source/engine/color.cxx b/slideshow/source/engine/color.cxx index 9151b12a9b89..a010ecca2e2b 100644 --- a/slideshow/source/engine/color.cxx +++ b/slideshow/source/engine/color.cxx @@ -229,8 +229,8 @@ namespace slideshow } RGBColor::RGBColor(const RGBColor& rLHS) + : maRGBTriple( rLHS.maRGBTriple ) { - RGBColor(rLHS.getRed(), rLHS.getGreen(), rLHS.getBlue()); } RGBColor& RGBColor::operator=( const RGBColor& rLHS ){ |