[Libreoffice-commits] core.git: vbahelper/source

Tor Lillqvist tml at collabora.com
Fri May 25 09:59:37 UTC 2018


 vbahelper/source/vbahelper/vbaapplicationbase.cxx |    6 ------
 1 file changed, 6 deletions(-)

New commits:
commit 3ebaf1a9fb28be42358f5460e5ab7322d4f1dee8
Author: Tor Lillqvist <tml at collabora.com>
Date:   Tue Mar 6 10:02:44 2018 +0200

    Bin some ASCII graphics
    
    Change-Id: I53ef86a997f4ae1c0ad84bb381327cba3143dd4c

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 )


More information about the Libreoffice-commits mailing list