summaryrefslogtreecommitdiffstats
path: root/src/extension/internal
diff options
context:
space:
mode:
authorKris De Gussem <kris.degussem@gmail.com>2012-03-01 20:11:29 +0000
committerKris <Kris.De.Gussem@hotmail.com>2012-03-01 20:11:29 +0000
commitabd4ef66c86b47b61644923b293180256bcedeed (patch)
tree36f28f61835c4258c6dd6a3ec060aaaa445eb8ab /src/extension/internal
parentfix issues introduced with revision 10932 (diff)
downloadinkscape-abd4ef66c86b47b61644923b293180256bcedeed.tar.gz
inkscape-abd4ef66c86b47b61644923b293180256bcedeed.zip
various minor things
(bzr r11036)
Diffstat (limited to 'src/extension/internal')
-rw-r--r--src/extension/internal/odf.h2
-rw-r--r--src/extension/internal/pov-out.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/extension/internal/odf.h b/src/extension/internal/odf.h
index 47cd47296..6b8883134 100644
--- a/src/extension/internal/odf.h
+++ b/src/extension/internal/odf.h
@@ -139,7 +139,7 @@ public:
{}
GradientStop(const GradientStop &other)
{ assign(other); }
- virtual GradientStop operator=(const GradientStop &other)
+ virtual GradientStop& operator=(const GradientStop &other)
{ assign(other); return *this; }
void assign(const GradientStop &other)
{
diff --git a/src/extension/internal/pov-out.h b/src/extension/internal/pov-out.h
index 2381a974c..dddc7e6b2 100644
--- a/src/extension/internal/pov-out.h
+++ b/src/extension/internal/pov-out.h
@@ -141,7 +141,7 @@ private:
{}
PovShapeInfo(const PovShapeInfo &other)
{ assign(other); }
- PovShapeInfo operator=(const PovShapeInfo &other)
+ PovShapeInfo& operator=(const PovShapeInfo &other)
{ assign(other); return *this; }
virtual ~PovShapeInfo()
{}