summaryrefslogtreecommitdiff
path: root/slideshow/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-12-18 18:26:18 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-12-20 10:52:36 +0000
commit24ee7af7b359440eb2cd2a83d145d3e4ff974dcd (patch)
treeb52ff812a6bf76aef0c124253a70b07313f80951 /slideshow/source
parentbe106b6335eee8e63d4789d4be4494eb3fb86a18 (diff)
Resoves: rhbz#663857 font color missing; C++ FAQ 10.3 doomage
(cherry picked from commit 963c6b655032b4e5d0f26555f3c26a129a9efb03)
Diffstat (limited to 'slideshow/source')
-rw-r--r--slideshow/source/engine/color.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/slideshow/source/engine/color.cxx b/slideshow/source/engine/color.cxx
index 3d7ca0fd81c7..78ea55e16c76 100644
--- a/slideshow/source/engine/color.cxx
+++ b/slideshow/source/engine/color.cxx
@@ -267,8 +267,8 @@ namespace slideshow
}
RGBColor::RGBColor(const RGBColor& rLHS)
+ : maRGBTriple( rLHS.maRGBTriple )
{
- RGBColor(rLHS.getRed(), rLHS.getGreen(), rLHS.getBlue());
}
RGBColor& RGBColor::operator=( const RGBColor& rLHS ){