summaryrefslogtreecommitdiff
path: root/vbahelper
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2018-03-06 10:02:44 +0200
committerTor Lillqvist <tml@collabora.com>2018-05-31 21:37:16 +0300
commit28d5b049e74f29214e97444c5c0d6d160cfd6b22 (patch)
tree1579fb145b9161cc1196bb22610b8c55286b9ba8 /vbahelper
parent60e12085febb22973bb8f9d6d751f5d639f2ee49 (diff)
Bin some ASCII graphics
Change-Id: I53ef86a997f4ae1c0ad84bb381327cba3143dd4c (cherry picked from commit 3ebaf1a9fb28be42358f5460e5ab7322d4f1dee8)
Diffstat (limited to 'vbahelper')
-rw-r--r--vbahelper/source/vbahelper/vbaapplicationbase.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/vbahelper/source/vbahelper/vbaapplicationbase.cxx b/vbahelper/source/vbahelper/vbaapplicationbase.cxx
index 2ed78493be97..61cb7d3d0e74 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;
@@ -135,7 +133,6 @@ IMPL_LINK_NOARG(VbaTimer, MacroCallHdl, Timer *, void)
{}
}
-// ====VbaTimerInfoHash==================================
struct VbaTimerInfoHash
{
size_t operator()( const VbaTimerInfo& rTimerInfo ) const
@@ -146,10 +143,8 @@ struct VbaTimerInfoHash
}
};
-// ====VbaTimerHashMap==================================
typedef std::unordered_map< VbaTimerInfo, VbaTimer*, VbaTimerInfoHash > VbaTimerHashMap;
-// ====VbaApplicationBase_Impl==================================
struct VbaApplicationBase_Impl final
{
VbaTimerHashMap m_aTimerHash;
@@ -170,7 +165,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 )