[Libreoffice-commits] core.git: svx/source

Caolán McNamara caolanm at redhat.com
Sun Nov 13 16:23:01 UTC 2016


 svx/source/form/fmvwimp.cxx |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit bf5eef2415fb84a1c885c8f74a22e575de6971fe
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Sat Nov 12 21:13:40 2016 +0000

    coverity#1371152 Missing move assignment operator
    
    Change-Id: I7cf3ed2c1cd392b149d21ee884aac695d5d01be2
    Reviewed-on: https://gerrit.libreoffice.org/30796
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/svx/source/form/fmvwimp.cxx b/svx/source/form/fmvwimp.cxx
index 705b9b1..f2defdd 100644
--- a/svx/source/form/fmvwimp.cxx
+++ b/svx/source/form/fmvwimp.cxx
@@ -1762,7 +1762,6 @@ void FmXFormView::startMarkListWatching()
     }
 }
 
-
 void FmXFormView::saveMarkList()
 {
     if ( m_pView )
@@ -1802,11 +1801,10 @@ void FmXFormView::saveMarkList()
     else
     {
         OSL_FAIL( "FmXFormView::saveMarkList: invalid view!" );
-        m_aMark = SdrMarkList();
+        m_aMark.Clear();
     }
 }
 
-
 static bool lcl_hasObject( SdrObjListIter& rIter, SdrObject* pObj )
 {
     bool bFound = false;


More information about the Libreoffice-commits mailing list