diff options
author | Tor Lillqvist <tml@collabora.com> | 2018-03-06 10:02:44 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-05-25 12:54:08 +0300 |
commit | 3ebaf1a9fb28be42358f5460e5ab7322d4f1dee8 (patch) | |
tree | 00231c2527166d2f9ebf49e7d493b7062a1e3e7f /vbahelper | |
parent | 395e7d47b87c152f994de289278e3a51c6ec1c9c (diff) |
Bin some ASCII graphics
Change-Id: I53ef86a997f4ae1c0ad84bb381327cba3143dd4c
Diffstat (limited to 'vbahelper')
-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 ) |