summaryrefslogtreecommitdiff
path: root/cui
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
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')
-rw-r--r--cui/source/dialogs/SpellDialog.cxx4
-rw-r--r--cui/source/inc/SpellDialog.hxx4
2 files changed, 4 insertions, 4 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);
}
//-----------------------------------------------------------------------
diff --git a/cui/source/inc/SpellDialog.hxx b/cui/source/inc/SpellDialog.hxx
index a15973441547..2284176717da 100644
--- a/cui/source/inc/SpellDialog.hxx
+++ b/cui/source/inc/SpellDialog.hxx
@@ -56,9 +56,9 @@ namespace svx{
class SpellDialog;
struct SpellErrorDescription;
// ------------------------------------------------------------------
-class SentenceEditWindow_Impl : public MultiLineEdit
+class SentenceEditWindow_Impl : public VclMultiLineEdit
{
- using MultiLineEdit::SetText;
+ using VclMultiLineEdit::SetText;
private:
std::set< sal_uInt16 > m_aIgnoreErrorsAt;