diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2012-02-24 21:21:29 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2012-02-25 00:45:43 -0500 |
commit | e7cd45417957fa1c57ca63fc6de2428647639f25 (patch) | |
tree | feeb247fe22d0a779955b1c39b5d344faf28984a /sc | |
parent | aa2456ecb15a0f14b3e0a6470124a82f1460596f (diff) |
File scope local method in anonymous namespace.
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/dpoutput.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/source/core/data/dpoutput.cxx b/sc/source/core/data/dpoutput.cxx index 37f09708e5ab..392b99a2ff94 100644 --- a/sc/source/core/data/dpoutput.cxx +++ b/sc/source/core/data/dpoutput.cxx @@ -1214,6 +1214,8 @@ bool ScDPOutput::GetHeaderLayout() const return mbHeaderLayout; } +namespace { + void lcl_GetTableVars( sal_Int32& rGrandTotalCols, sal_Int32& rGrandTotalRows, sal_Int32& rDataLayoutIndex, std::vector<String>& rDataNames, std::vector<String>& rGivenNames, sheet::DataPilotFieldOrientation& rDataOrient, @@ -1280,6 +1282,8 @@ void lcl_GetTableVars( sal_Int32& rGrandTotalCols, sal_Int32& rGrandTotalRows, s } } +} + void ScDPOutput::GetPositionData(const ScAddress& rPos, DataPilotTablePositionData& rPosData) { using namespace ::com::sun::star::sheet; |