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

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Wed Jul 25 11:05:39 UTC 2018


 svx/source/dialog/frmsel.cxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 549b718b7dc5ff11990f6c922e467752b65d6945
Author:     Muhammet Kara <muhammet.kara at pardus.org.tr>
AuthorDate: Wed Jul 25 10:47:25 2018 +0300
Commit:     Muhammet Kara <muhammet.kara at pardus.org.tr>
CommitDate: Wed Jul 25 13:05:18 2018 +0200

    Remove useless self-assignment of mxImpl->mxAccess
    
    Change-Id: I49fe21ad4a99ea617d6698a9c9eab4daf6fed3b9
    Reviewed-on: https://gerrit.libreoffice.org/57951
    Tested-by: Jenkins
    Reviewed-by: Muhammet Kara <muhammet.kara at pardus.org.tr>

diff --git a/svx/source/dialog/frmsel.cxx b/svx/source/dialog/frmsel.cxx
index 2d08e49fb5a7..05f7729ab805 100644
--- a/svx/source/dialog/frmsel.cxx
+++ b/svx/source/dialog/frmsel.cxx
@@ -1023,8 +1023,7 @@ void FrameSelector::SetColorToSelection( const Color& rColor )
 Reference< XAccessible > FrameSelector::CreateAccessible()
 {
     if( !mxImpl->mxAccess.is() )
-        mxImpl->mxAccess = mxImpl->mxAccess =
-            new a11y::AccFrameSelector( *this, FrameBorderType::NONE );
+        mxImpl->mxAccess = new a11y::AccFrameSelector( *this, FrameBorderType::NONE );
     return mxImpl->mxAccess.get();
 }
 


More information about the Libreoffice-commits mailing list