diff options
author | Eike Rathke <erack@redhat.com> | 2015-01-13 16:59:30 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-01-13 16:59:46 +0100 |
commit | 35fa188305600fa950a07e4b6c4f6a77a42d32d6 (patch) | |
tree | 99db4140febe6f48ab58571ebc7f5dccf59a9f32 /svtools | |
parent | a38e1be92c50ce6feba41402201f09605fedaa5a (diff) |
eliminate unnecessary macro
Change-Id: I0dceccbe1275298b43f50296da075ae95694d39a
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/contnr/contentenumeration.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/svtools/source/contnr/contentenumeration.cxx b/svtools/source/contnr/contentenumeration.cxx index b601bf5eb23b..2c8e29666860 100644 --- a/svtools/source/contnr/contentenumeration.cxx +++ b/svtools/source/contnr/contentenumeration.cxx @@ -50,9 +50,6 @@ namespace svt #define ROW_IS_FLOPPY 11 #define ROW_IS_COMPACTDISC 12 -#define CONVERT_DATETIME( aUnoDT, aToolsDT ) \ - aToolsDT = ::DateTime( aUnoDT ); - using ::com::sun::star::uno::Reference; using ::com::sun::star::uno::Sequence; using ::com::sun::star::uno::Exception; @@ -260,7 +257,7 @@ namespace svt if ( bContainsDate ) { - CONVERT_DATETIME( aDT, pData->maModDate ); + pData->maModDate = ::DateTime( aDT ); } if ( pData->mbIsFolder ) |