summaryrefslogtreecommitdiffstats
path: root/sc/inc/dpshttab.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2011-01-21 15:51:06 -0500
committerKohei Yoshida <kyoshida@novell.com>2011-01-21 15:51:06 -0500
commitdc59e910da1c22b600bf31f7baa5aabd354ddeb5 (patch)
treed62cde79ebe9699a613bfdf03fc9aee3c7ed92e9 /sc/inc/dpshttab.hxx
parentThe range name data member can safely have private visibility. (diff)
downloadcore-dc59e910da1c22b600bf31f7baa5aabd354ddeb5.tar.gz
core-dc59e910da1c22b600bf31f7baa5aabd354ddeb5.zip
Now all its data members are private.
Diffstat (limited to 'sc/inc/dpshttab.hxx')
-rw-r--r--sc/inc/dpshttab.hxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/sc/inc/dpshttab.hxx b/sc/inc/dpshttab.hxx
index 81dc7f0cb886..34b598b1dfa1 100644
--- a/sc/inc/dpshttab.hxx
+++ b/sc/inc/dpshttab.hxx
@@ -52,11 +52,7 @@ class ScDPItemData;
*/
class ScSheetSourceDesc
{
-private:
- ScRange aSourceRange;
- ::rtl::OUString maRangeName;
public:
- ScQueryParam aQueryParam;
SC_DLLPUBLIC void SetSourceRange(const ScRange& rRange);
SC_DLLPUBLIC const ScRange& GetSourceRange() const;
@@ -80,6 +76,11 @@ public:
ScDPTableDataCache* GetCache( ScDocument* pDoc, long nID ) const;
ScDPTableDataCache* GetExistDPObjectCache ( ScDocument* pDoc ) const;
long GetCacheId( ScDocument* pDoc, long nID ) const;
+
+private:
+ ScRange maSourceRange;
+ ::rtl::OUString maRangeName;
+ ScQueryParam maQueryParam;
};
// --------------------------------------------------------------------