diff options
author | Maxim Monastirsky <momonasmon@gmail.com> | 2017-01-18 00:01:32 +0200 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2017-01-18 23:38:46 +0200 |
commit | 79d2cb796a04a8cd1005313019802e63e2ec7ede (patch) | |
tree | 17a3a42c577cebe924aece44d3fe72268209a9cb | |
parent | 16c9933666a9328a8bc59175248a440d26b3242a (diff) |
Drop SwEditWin:: prefix
Change-Id: I86b810a6ad94255a5f2a59392ba85775a488ba12
-rw-r--r-- | sw/source/uibase/docvw/edtwin.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/docvw/edtwin.cxx b/sw/source/uibase/docvw/edtwin.cxx index c61e8d50c81d..60ab0004de08 100644 --- a/sw/source/uibase/docvw/edtwin.cxx +++ b/sw/source/uibase/docvw/edtwin.cxx @@ -4838,9 +4838,9 @@ void SwEditWin::MouseButtonUp(const MouseEvent& rMEvt) m_pApplyTempl->nUndo = std::min(m_pApplyTempl->nUndo, rSh.GetDoc()->GetIDocumentUndoRedo().GetUndoActionCount()); if (nId == RES_CHRATR_BACKGROUND) - rSh.SetAttrItem( SvxBrushItem( SwEditWin::m_aWaterCanTextBackColor, nId ) ); + rSh.SetAttrItem( SvxBrushItem( m_aWaterCanTextBackColor, nId ) ); else - rSh.SetAttrItem( SvxColorItem( SwEditWin::m_aWaterCanTextColor, nId ) ); + rSh.SetAttrItem( SvxColorItem( m_aWaterCanTextColor, nId ) ); rSh.UnSetVisibleCursor(); rSh.EnterStdMode(); rSh.SetVisibleCursor(aDocPt); |