diff options
-rw-r--r-- | vbahelper/source/vbahelper/vbaapplicationbase.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/vbahelper/source/vbahelper/vbaapplicationbase.cxx b/vbahelper/source/vbahelper/vbaapplicationbase.cxx index 2fb92cf5c786..198c71fb6c45 100644 --- a/vbahelper/source/vbahelper/vbaapplicationbase.cxx +++ b/vbahelper/source/vbahelper/vbaapplicationbase.cxx @@ -54,10 +54,8 @@ using namespace ::ooo::vba; #define OFFICEVERSION "11.0" -// ====VbaTimerInfo================================== typedef ::std::pair< OUString, ::std::pair< double, double > > VbaTimerInfo; -// ====VbaTimer================================== class VbaTimer { Timer m_aTimer; @@ -134,7 +132,6 @@ IMPL_LINK_NOARG(VbaTimer, MacroCallHdl, Timer *, void) {} } -// ====VbaTimerInfoHash================================== struct VbaTimerInfoHash { size_t operator()( const VbaTimerInfo& rTimerInfo ) const @@ -145,10 +142,8 @@ struct VbaTimerInfoHash } }; -// ====VbaTimerHashMap================================== typedef std::unordered_map< VbaTimerInfo, VbaTimer*, VbaTimerInfoHash > VbaTimerHashMap; -// ====VbaApplicationBase_Impl================================== struct VbaApplicationBase_Impl final { VbaTimerHashMap m_aTimerHash; @@ -169,7 +164,6 @@ struct VbaApplicationBase_Impl final } }; -// ====VbaApplicationBase================================== VbaApplicationBase::VbaApplicationBase( const uno::Reference< uno::XComponentContext >& xContext ) : ApplicationBase_BASE( uno::Reference< XHelperInterface >(), xContext ) , m_pImpl( new VbaApplicationBase_Impl ) |