diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-03-29 21:07:04 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-03-29 21:07:04 +0100 |
commit | 8a8532181a66548aea79da73745dcac785f133d8 (patch) | |
tree | 00bea591e64a50fd8ed6f9396e06c1b4e07e5124 /oox | |
parent | 4b7e6d6eabed6ef6a3916bbd8376a24a7248f009 (diff) |
drop extra unused inlines and remains of unconstructable class
Diffstat (limited to 'oox')
-rw-r--r-- | oox/inc/oox/dump/dumperbase.hxx | 2 | ||||
-rw-r--r-- | oox/inc/oox/ole/vbaprojectfilter.hxx | 10 | ||||
-rw-r--r-- | oox/source/ole/vbaprojectfilter.cxx | 14 |
3 files changed, 0 insertions, 26 deletions
diff --git a/oox/inc/oox/dump/dumperbase.hxx b/oox/inc/oox/dump/dumperbase.hxx index 0dd1abcb7e3b..ef95a793b8f1 100644 --- a/oox/inc/oox/dump/dumperbase.hxx +++ b/oox/inc/oox/dump/dumperbase.hxx @@ -1150,8 +1150,6 @@ public: mrOut( *rxOut ) { mrOut.startTable( nW1 ); } inline explicit TableGuard( const OutputRef& rxOut, sal_Int32 nW1, sal_Int32 nW2 ) : mrOut( *rxOut ) { mrOut.startTable( nW1, nW2 ); } - inline explicit TableGuard( const OutputRef& rxOut, sal_Int32 nW1, sal_Int32 nW2, sal_Int32 nW3 ) : - mrOut( *rxOut ) { mrOut.startTable( nW1, nW2, nW3 ); } inline explicit TableGuard( const OutputRef& rxOut, sal_Int32 nW1, sal_Int32 nW2, sal_Int32 nW3, sal_Int32 nW4 ) : mrOut( *rxOut ) { mrOut.startTable( nW1, nW2, nW3, nW4 ); } inline explicit TableGuard( const OutputRef& rxOut, size_t nColCount, diff --git a/oox/inc/oox/ole/vbaprojectfilter.hxx b/oox/inc/oox/ole/vbaprojectfilter.hxx index 50c6e3e5f9ee..8cc029be8bc8 100644 --- a/oox/inc/oox/ole/vbaprojectfilter.hxx +++ b/oox/inc/oox/ole/vbaprojectfilter.hxx @@ -56,16 +56,6 @@ private: ::rtl::OUString maStorageName; }; -// ============================================================================ - -class WordVbaProjectFilter : public VbaProjectFilterBase -{ -private: - virtual ::rtl::OUString implGetImplementationName() const; -}; - -// ============================================================================ - } // namespace ole } // namespace oox diff --git a/oox/source/ole/vbaprojectfilter.cxx b/oox/source/ole/vbaprojectfilter.cxx index 5f993ed8a3d1..23ca4389b9d7 100644 --- a/oox/source/ole/vbaprojectfilter.cxx +++ b/oox/source/ole/vbaprojectfilter.cxx @@ -72,20 +72,6 @@ VbaProject* VbaProjectFilterBase::implCreateVbaProject() const // ============================================================================ -OUString SAL_CALL WordVbaProjectFilter_getImplementationName() throw() -{ - return CREATE_OUSTRING( "com.sun.star.comp.oox.WordVbaProjectFilter" ); -} - -// ---------------------------------------------------------------------------- - -OUString WordVbaProjectFilter::implGetImplementationName() const -{ - return WordVbaProjectFilter_getImplementationName(); -} - -// ============================================================================ - } // namespace ole } // namespace oox |