diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2011-03-01 14:08:19 -0500 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2011-03-01 16:15:59 -0500 |
commit | 65b0689ed0e28a82fdaa24268dba9d65654975d3 (patch) | |
tree | aba277eac05ba810de6f678a6bc379e125682542 /sc/inc/scabstdlg.hxx | |
parent | 6529718c2262125ba952ecb7910c356afd2f3611 (diff) |
Initial change to display named range option in the source dialog.
Diffstat (limited to 'sc/inc/scabstdlg.hxx')
-rw-r--r-- | sc/inc/scabstdlg.hxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sc/inc/scabstdlg.hxx b/sc/inc/scabstdlg.hxx index b57a70451b22..24649cbee55d 100644 --- a/sc/inc/scabstdlg.hxx +++ b/sc/inc/scabstdlg.hxx @@ -94,8 +94,11 @@ public: class AbstractScDataPilotSourceTypeDlg : public VclAbstractDialog //add for ScDataPilotSourceTypeDlg { public: - virtual BOOL IsDatabase() const = 0; - virtual BOOL IsExternal() const = 0; + virtual bool IsDatabase() const = 0; + virtual bool IsExternal() const = 0; + virtual bool IsNamedRange() const = 0; + virtual rtl::OUString GetSelectedNamedRange() const = 0; + virtual void SetNamedRanges(const ::std::vector<rtl::OUString>& rNames) = 0; }; class AbstractScDataPilotServiceDlg : public VclAbstractDialog //add for ScDataPilotServiceDlg |