summaryrefslogtreecommitdiff
path: root/cui/source/dialogs/SpellDialog.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-19 15:40:46 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-19 15:48:42 +0000
commitdbeb8d405eba695cefbcf2660d556d70731eac79 (patch)
treec841a568329e2855e00979eef5e44f5b6459e5f4 /cui/source/dialogs/SpellDialog.cxx
parent49cecd8b41cac29cc9642944eaae5b5f63a1bd46 (diff)
Resolves: fdo#74242 now VclMultiLineEdit's a11y work
MultiLineEdit don't, continue to replace MultiLineEdit with VclMultiLineEdit as we continue .ui conversion and delete at end Change-Id: I0d5c5621d5fe26ac5e39392c66b95eebb0786f0d
Diffstat (limited to 'cui/source/dialogs/SpellDialog.cxx')
-rw-r--r--cui/source/dialogs/SpellDialog.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/dialogs/SpellDialog.cxx b/cui/source/dialogs/SpellDialog.cxx
index a82616c1a066..255817fa5875 100644
--- a/cui/source/dialogs/SpellDialog.cxx
+++ b/cui/source/dialogs/SpellDialog.cxx
@@ -1186,7 +1186,7 @@ bool SpellDialog::ApplyChangeAllList_Impl(SpellPortions& rSentence, bool &bHasRe
//-----------------------------------------------------------------------
SentenceEditWindow_Impl::SentenceEditWindow_Impl(Window * pParent, WinBits nBits)
- : MultiLineEdit(pParent, nBits)
+ : VclMultiLineEdit(pParent, nBits)
, m_nErrorStart(0)
, m_nErrorEnd(0)
, m_bIsUndoEditMode(false)
@@ -1541,7 +1541,7 @@ bool SentenceEditWindow_Impl::PreNotify( NotifyEvent& rNEvt )
else
bChange = false;
}
- return bChange || MultiLineEdit::PreNotify(rNEvt);
+ return bChange || VclMultiLineEdit::PreNotify(rNEvt);
}
//-----------------------------------------------------------------------