diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-19 15:40:46 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-19 15:48:42 +0000 |
commit | dbeb8d405eba695cefbcf2660d556d70731eac79 (patch) | |
tree | c841a568329e2855e00979eef5e44f5b6459e5f4 | |
parent | 49cecd8b41cac29cc9642944eaae5b5f63a1bd46 (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
-rw-r--r-- | cui/source/dialogs/SpellDialog.cxx | 4 | ||||
-rw-r--r-- | cui/source/inc/SpellDialog.hxx | 4 | ||||
-rw-r--r-- | sc/source/ui/inc/validate.hxx | 2 |
3 files changed, 5 insertions, 5 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; diff --git a/sc/source/ui/inc/validate.hxx b/sc/source/ui/inc/validate.hxx index eed488399c41..6faa2d0734e0 100644 --- a/sc/source/ui/inc/validate.hxx +++ b/sc/source/ui/inc/validate.hxx @@ -212,7 +212,7 @@ private: ListBox maLbValue; FixedText maFtMin; formula::RefEdit maEdMin; - MultiLineEdit maEdList; /// Entries for explicit list + VclMultiLineEdit maEdList; /// Entries for explicit list FixedText maFtMax; formula::RefEdit maEdMax; FixedText maFtHint; /// Hint text for cell range validity. |