summaryrefslogtreecommitdiff
path: root/sc/source/ui
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui')
-rw-r--r--sc/source/ui/inc/spelleng.hxx4
-rw-r--r--sc/source/ui/view/spelleng.cxx2
2 files changed, 2 insertions, 4 deletions
diff --git a/sc/source/ui/inc/spelleng.hxx b/sc/source/ui/inc/spelleng.hxx
index d2e46d22a7f4..150139e25a7f 100644
--- a/sc/source/ui/inc/spelleng.hxx
+++ b/sc/source/ui/inc/spelleng.hxx
@@ -94,14 +94,12 @@ private:
class ScSpellingEngine : public ScConversionEngineBase
{
public:
- typedef ::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XSpellChecker1 > XSpellCheckerRef;
-
explicit ScSpellingEngine(
SfxItemPool* pEnginePool,
ScViewData& rViewData,
ScDocument* pUndoDoc,
ScDocument* pRedoDoc,
- XSpellCheckerRef xSpeller );
+ css::uno::Reference< css::linguistic2::XSpellChecker1 > xSpeller );
/** Checks spelling of all cells in the selection or sheet. */
virtual void ConvertAll( EditView& rEditView ) SAL_OVERRIDE;
diff --git a/sc/source/ui/view/spelleng.cxx b/sc/source/ui/view/spelleng.cxx
index a8e0fca5a7e7..4621b6984deb 100644
--- a/sc/source/ui/view/spelleng.cxx
+++ b/sc/source/ui/view/spelleng.cxx
@@ -270,7 +270,7 @@ void ScConversionEngineBase::FillFromCell( SCCOL nCol, SCROW nRow, SCTAB nTab )
ScSpellingEngine::ScSpellingEngine(
SfxItemPool* pEnginePoolP, ScViewData& rViewData,
ScDocument* pUndoDoc, ScDocument* pRedoDoc,
- XSpellCheckerRef xSpeller ) :
+ css::uno::Reference< css::linguistic2::XSpellChecker1 > xSpeller ) :
ScConversionEngineBase( pEnginePoolP, rViewData, pUndoDoc, pRedoDoc )
{
SetSpeller( xSpeller );