summaryrefslogtreecommitdiff
path: root/sc/source/ui/app
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2012-04-02 16:50:15 +0100
committerMichael Meeks <michael.meeks@suse.com>2012-04-02 20:22:40 +0100
commit0e0e3caf382f793481b638417540d05c1d1ed24a (patch)
tree4cf268f5dd5b0e44cf49c32681af11033ec33246 /sc/source/ui/app
parentf834d986d5a1e7e66f4029476d058fbf5f63d8d1 (diff)
Don't instantiate ScDocFunc objects, get them from the doc-shell
Diffstat (limited to 'sc/source/ui/app')
-rw-r--r--sc/source/ui/app/inputwin.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index c60b6ff187aa..f0fb7a8bf2b6 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -2397,8 +2397,7 @@ void ScPosWnd::DoEnter()
ScRangeData* pNew = new ScRangeData( pDoc, aText, aContent, aCursor );
if ( aNewRanges.insert(pNew) )
{
- ScDocFunc aFunc(*pDocShell);
- aFunc.ModifyRangeNames( aNewRanges );
+ pDocShell->GetDocFunc().ModifyRangeNames( aNewRanges );
pViewSh->UpdateInputHandler(true);
}
}