summaryrefslogtreecommitdiff
path: root/sc/source/core/data/dpoutput.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2011-04-26 14:25:24 -0400
committerKohei Yoshida <kyoshida@novell.com>2011-04-26 14:25:24 -0400
commit423904ecc6858b39b10316113ebedd33a611f38e (patch)
tree7612eb92a92750970bb15cffe73373f0840f6b9f /sc/source/core/data/dpoutput.cxx
parentdaa5f4f34649bb79d03970f20855669a29846849 (diff)
Fixed doubly nested anonymous namespaces.
Diffstat (limited to 'sc/source/core/data/dpoutput.cxx')
-rw-r--r--sc/source/core/data/dpoutput.cxx11
1 files changed, 3 insertions, 8 deletions
diff --git a/sc/source/core/data/dpoutput.cxx b/sc/source/core/data/dpoutput.cxx
index 01770b0273fe..a1c0ec2d7840 100644
--- a/sc/source/core/data/dpoutput.cxx
+++ b/sc/source/core/data/dpoutput.cxx
@@ -97,6 +97,9 @@ using ::rtl::OUString;
namespace {
+bool lcl_compareColfuc ( SCCOL i, SCCOL j) { return (i<j); }
+bool lcl_compareRowfuc ( SCROW i, SCROW j) { return (i<j); }
+
class ScDPOutputImpl
{
ScDocument* mpDoc;
@@ -135,14 +138,6 @@ public:
};
-
-namespace
-{
- bool lcl_compareColfuc ( SCCOL i, SCCOL j) { return (i<j); }
- bool lcl_compareRowfuc ( SCROW i, SCROW j) { return (i<j); }
-}
-
-
void ScDPOutputImpl::OutputDataArea()
{
AddRow( mnDataStartRow );