summaryrefslogtreecommitdiff
path: root/svtools/source/table/cellvalueconversion.cxx
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 20:45:41 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-25 21:14:09 +0000
commitbee1cc83ec4b8a246017a823305fd5d20869bce3 (patch)
tree398868a95857150f59994c8b2ebbb04fbca12be8 /svtools/source/table/cellvalueconversion.cxx
parent614e1a6cf8839344755ea8d5227561f75772aa2a (diff)
Remove visual noise from svtools
Change-Id: I7c2b74a449fb20aae5bc643e24a22cf6f732136d Reviewed-on: https://gerrit.libreoffice.org/8320 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools/source/table/cellvalueconversion.cxx')
-rw-r--r--svtools/source/table/cellvalueconversion.cxx56
1 files changed, 28 insertions, 28 deletions
diff --git a/svtools/source/table/cellvalueconversion.cxx b/svtools/source/table/cellvalueconversion.cxx
index 2aba8a64c362..14a7be2873ec 100644
--- a/svtools/source/table/cellvalueconversion.cxx
+++ b/svtools/source/table/cellvalueconversion.cxx
@@ -38,10 +38,10 @@
#include <boost/shared_ptr.hpp>
#include <boost/unordered_map.hpp>
-//......................................................................................................................
+
namespace svt
{
-//......................................................................................................................
+
using namespace ::com::sun::star::uno;
using ::com::sun::star::util::XNumberFormatter;
@@ -59,9 +59,9 @@ namespace svt
typedef ::com::sun::star::util::Time UnoTime;
typedef ::com::sun::star::util::Date UnoDate;
- //==================================================================================================================
+
//= helper
- //==================================================================================================================
+
namespace
{
@@ -80,9 +80,9 @@ namespace svt
}
}
- //==================================================================================================================
+
//= IValueNormalization
- //==================================================================================================================
+
class SAL_NO_VTABLE IValueNormalization
{
public:
@@ -100,9 +100,9 @@ namespace svt
typedef ::boost::shared_ptr< IValueNormalization > PValueNormalization;
typedef ::boost::unordered_map< OUString, PValueNormalization, OUStringHash > NormalizerCache;
- //==================================================================================================================
+
//= CellValueConversion_Data
- //==================================================================================================================
+
struct CellValueConversion_Data
{
Reference< XNumberFormatter > xNumberFormatter;
@@ -117,9 +117,9 @@ namespace svt
}
};
- //==================================================================================================================
+
//= StandardFormatNormalizer
- //==================================================================================================================
+
class StandardFormatNormalizer : public IValueNormalization
{
protected:
@@ -148,9 +148,9 @@ namespace svt
::sal_Int32 m_nFormatKey;
};
- //==================================================================================================================
+
//= DoubleNormalization
- //==================================================================================================================
+
class DoubleNormalization : public StandardFormatNormalizer
{
public:
@@ -170,9 +170,9 @@ namespace svt
virtual ~DoubleNormalization() { }
};
- //==================================================================================================================
+
//= IntegerNormalization
- //==================================================================================================================
+
class IntegerNormalization : public StandardFormatNormalizer
{
public:
@@ -191,9 +191,9 @@ namespace svt
}
};
- //==================================================================================================================
+
//= BooleanNormalization
- //==================================================================================================================
+
class BooleanNormalization : public StandardFormatNormalizer
{
public:
@@ -212,9 +212,9 @@ namespace svt
}
};
- //==================================================================================================================
+
//= DateTimeNormalization
- //==================================================================================================================
+
class DateTimeNormalization : public StandardFormatNormalizer
{
public:
@@ -246,9 +246,9 @@ namespace svt
}
};
- //==================================================================================================================
+
//= DateNormalization
- //==================================================================================================================
+
class DateNormalization : public StandardFormatNormalizer
{
public:
@@ -276,9 +276,9 @@ namespace svt
}
};
- //==================================================================================================================
+
//= TimeNormalization
- //==================================================================================================================
+
class TimeNormalization : public StandardFormatNormalizer
{
public:
@@ -307,9 +307,9 @@ namespace svt
}
};
- //==================================================================================================================
+
//= operations
- //==================================================================================================================
+
namespace
{
@@ -408,9 +408,9 @@ namespace svt
}
}
- //==================================================================================================================
+
//= CellValueConversion
- //==================================================================================================================
+
CellValueConversion::CellValueConversion()
:m_pData( new CellValueConversion_Data )
@@ -454,8 +454,8 @@ namespace svt
return sStringValue;
}
-//......................................................................................................................
+
} // namespace svt
-//......................................................................................................................
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */