summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sd/source/filter/ppt/propread.cxx2
-rw-r--r--sd/source/filter/ppt/propread.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/filter/ppt/propread.cxx b/sd/source/filter/ppt/propread.cxx
index 893b7307f129..1e698db011bd 100644
--- a/sd/source/filter/ppt/propread.cxx
+++ b/sd/source/filter/ppt/propread.cxx
@@ -39,7 +39,7 @@ PropEntry::PropEntry( const PropEntry& rProp ) :
memcpy( (void*)mpBuf, (void*)rProp.mpBuf, mnSize );
};
-const PropEntry& PropEntry::operator=(const PropEntry& rPropEntry)
+PropEntry& PropEntry::operator=(const PropEntry& rPropEntry)
{
if ( this != &rPropEntry )
{
diff --git a/sd/source/filter/ppt/propread.hxx b/sd/source/filter/ppt/propread.hxx
index 9a9077c7b0b2..c983e62c3617 100644
--- a/sd/source/filter/ppt/propread.hxx
+++ b/sd/source/filter/ppt/propread.hxx
@@ -113,7 +113,7 @@ struct PropEntry
PropEntry( const PropEntry& rProp );
~PropEntry() { delete[] mpBuf; } ;
- const PropEntry& operator=(const PropEntry& rPropEntry);
+ PropEntry& operator=(const PropEntry& rPropEntry);
};
class PropItem : public SvMemoryStream