From bee1cc83ec4b8a246017a823305fd5d20869bce3 Mon Sep 17 00:00:00 2001 From: Alexander Wilms Date: Tue, 25 Feb 2014 20:45:41 +0100 Subject: Remove visual noise from svtools MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I7c2b74a449fb20aae5bc643e24a22cf6f732136d Reviewed-on: https://gerrit.libreoffice.org/8320 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- svtools/source/table/cellvalueconversion.cxx | 56 ++++++++++++++-------------- 1 file changed, 28 insertions(+), 28 deletions(-) (limited to 'svtools/source/table/cellvalueconversion.cxx') 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 #include -//...................................................................................................................... + 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: */ -- cgit