summaryrefslogtreecommitdiff
path: root/sc/inc/dpshttab.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2011-01-21 14:59:06 -0500
committerKohei Yoshida <kyoshida@novell.com>2011-01-21 14:59:06 -0500
commitbccc6db5b56e54cd790f1dc3ae9063326d8c362c (patch)
tree43bbde2db1df8c47a5c129a06b528fa5c3a42bbe /sc/inc/dpshttab.hxx
parent663aab2ca85ee41f01c80c34207733500fc9b763 (diff)
Encapsulated access to aSourceRange.
Diffstat (limited to 'sc/inc/dpshttab.hxx')
-rw-r--r--sc/inc/dpshttab.hxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/sc/inc/dpshttab.hxx b/sc/inc/dpshttab.hxx
index ea345cd88f48..bdbeed3b3669 100644
--- a/sc/inc/dpshttab.hxx
+++ b/sc/inc/dpshttab.hxx
@@ -50,14 +50,16 @@ class ScDPItemData;
* precedence over the source range when it's non-empty.</i> When the range
* name is empty, the source range gets used.
*/
-struct ScSheetSourceDesc
+class ScSheetSourceDesc
{
+private:
ScRange aSourceRange;
+public:
::rtl::OUString maRangeName;
ScQueryParam aQueryParam;
- void SetSourceRange(const ScRange& rRange);
- const ScRange& GetSourceRange() const;
+ SC_DLLPUBLIC void SetSourceRange(const ScRange& rRange);
+ SC_DLLPUBLIC const ScRange& GetSourceRange() const;
void SetRangeName(const ::rtl::OUString& rName);
const ::rtl::OUString& GetRangeName() const;
void SetQueryParam(const ScQueryParam& rParam);