Author: hdu
Date: Fri May 17 11:00:17 2013
New Revision: 1483734

URL: http://svn.apache.org/r1483734
Log:
#i122208# fix sd::TransferableData::Representative's assignment operator

Modified:
    
openoffice/branches/rejuvenate01/main/sd/source/ui/slidesorter/inc/controller/SlsTransferableData.hxx

Modified: 
openoffice/branches/rejuvenate01/main/sd/source/ui/slidesorter/inc/controller/SlsTransferableData.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/rejuvenate01/main/sd/source/ui/slidesorter/inc/controller/SlsTransferableData.hxx?rev=1483734&r1=1483733&r2=1483734&view=diff
==============================================================================
--- 
openoffice/branches/rejuvenate01/main/sd/source/ui/slidesorter/inc/controller/SlsTransferableData.hxx
 (original)
+++ 
openoffice/branches/rejuvenate01/main/sd/source/ui/slidesorter/inc/controller/SlsTransferableData.hxx
 Fri May 17 11:00:17 2013
@@ -50,7 +50,7 @@ public:                                                       
        
             : maBitmap(rBitmap), mbIsExcluded(bIsExcluded) {}
         Representative (const Representative& rOther)
             : maBitmap(rOther.maBitmap), mbIsExcluded(rOther.mbIsExcluded) {}
-        Representative operator= (Representative& rOther)
+        Representative operator= (const Representative& rOther)
         {   if (&rOther != this) {maBitmap = rOther.maBitmap; mbIsExcluded = 
rOther.mbIsExcluded; }
             return *this;
         }


Reply via email to