summaryrefslogtreecommitdiff
path: root/sc/source/ui/app/scmod.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/app/scmod.cxx')
-rw-r--r--sc/source/ui/app/scmod.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/app/scmod.cxx b/sc/source/ui/app/scmod.cxx
index e30dd47e4b11..e4cc2839c85a 100644
--- a/sc/source/ui/app/scmod.cxx
+++ b/sc/source/ui/app/scmod.cxx
@@ -1426,21 +1426,21 @@ void ScModule::InputCancelHandler()
pHdl->CancelHandler();
}
-void ScModule::InputSelection( EditView* pView )
+void ScModule::InputSelection( const EditView* pView )
{
ScInputHandler* pHdl = GetInputHdl();
if (pHdl)
pHdl->InputSelection( pView );
}
-void ScModule::InputChanged( EditView* pView )
+void ScModule::InputChanged( const EditView* pView )
{
ScInputHandler* pHdl = GetInputHdl();
if (pHdl)
pHdl->InputChanged( pView, false );
}
-void ScModule::ViewShellGone( ScTabViewShell* pViewSh )
+void ScModule::ViewShellGone( const ScTabViewShell* pViewSh )
{
ScInputHandler* pHdl = GetInputHdl();
if (pHdl)
@@ -1822,7 +1822,7 @@ void ScModule::AnythingChanged()
nIdleCount = 0;
}
-static void lcl_CheckNeedsRepaint( ScDocShell* pDocShell )
+static void lcl_CheckNeedsRepaint( const ScDocShell* pDocShell )
{
SfxViewFrame* pFrame = SfxViewFrame::GetFirst( pDocShell );
while ( pFrame )