[Libreoffice-commits] core.git: cui/source sc/source
Caolán McNamara
caolanm at redhat.com
Wed Feb 19 16:50:43 CET 2014
cui/source/dialogs/SpellDialog.cxx | 4 ++--
cui/source/inc/SpellDialog.hxx | 4 ++--
sc/source/ui/inc/validate.hxx | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
New commits:
commit dbeb8d405eba695cefbcf2660d556d70731eac79
Author: Caolán McNamara <caolanm at redhat.com>
Date: Wed Feb 19 15:40:46 2014 +0000
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
diff --git a/cui/source/dialogs/SpellDialog.cxx b/cui/source/dialogs/SpellDialog.cxx
index a82616c..255817f 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 a159734..2284176 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 eed4883..6faa2d0 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.
More information about the Libreoffice-commits
mailing list