diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-09-26 17:41:01 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-11-28 13:28:19 -0500 |
commit | 12e4634c599cbde5546f6076077e8941df2595c6 (patch) | |
tree | fa3df94a2a67bfb41eb454c0cdb9e38f44891c98 /sc/source/ui/view | |
parent | e51254d933dd878bb60d59f04bc95d399001d3f2 (diff) |
Separate method to launch xml source dialog.
Change-Id: Iac7898d695cd7659f44944d6615a91d4e2b6a52e
Diffstat (limited to 'sc/source/ui/view')
-rw-r--r-- | sc/source/ui/view/cellsh1.cxx | 5 | ||||
-rw-r--r-- | sc/source/ui/view/cellsh2.cxx | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/sc/source/ui/view/cellsh1.cxx b/sc/source/ui/view/cellsh1.cxx index 6cfd3f8cea88..1c26ff7c5028 100644 --- a/sc/source/ui/view/cellsh1.cxx +++ b/sc/source/ui/view/cellsh1.cxx @@ -2393,6 +2393,11 @@ void ScCellShell::ExecuteDataPilotDialog() } } +void ScCellShell::ExecuteXMLSourceDialog() +{ + fprintf(stdout, "ScCellShell::ExecuteXMLSourceDialog: launch xml dialog\n"); +} + void ScCellShell::ExecuteSubtotals(SfxRequest& rReq) { ScTabViewShell* pTabViewShell = GetViewData()->GetViewShell(); diff --git a/sc/source/ui/view/cellsh2.cxx b/sc/source/ui/view/cellsh2.cxx index d05e3859b724..aecb65c7cacf 100644 --- a/sc/source/ui/view/cellsh2.cxx +++ b/sc/source/ui/view/cellsh2.cxx @@ -746,7 +746,7 @@ void ScCellShell::ExecuteDB( SfxRequest& rReq ) break; case SID_MANAGE_XML_SOURCE: - fprintf(stdout, "ScCellShell::ExecuteDB: SID_MANAGE_XML_SOURCE\n"); + ExecuteXMLSourceDialog(); break; case FID_VALIDATION: { |