summaryrefslogtreecommitdiff
path: root/cui/source/customize/eventdlg.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-22 10:13:56 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-22 10:13:56 +0200
commita57049915d32f549cbda6aa8c8d189531aec522b (patch)
tree1ddf76e00952cfe7819e9935b58d5c144eac88ff /cui/source/customize/eventdlg.cxx
parent7e7bef2748c100aed9ec98fbceb8608fc2906ef2 (diff)
Avoid reserved identifiers
Change-Id: I263603fb81d368ebc8450b2d8cc01752fcd3f29d
Diffstat (limited to 'cui/source/customize/eventdlg.cxx')
-rw-r--r--cui/source/customize/eventdlg.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/cui/source/customize/eventdlg.cxx b/cui/source/customize/eventdlg.cxx
index ae2ef79d2bd0..8a79ba5c60c6 100644
--- a/cui/source/customize/eventdlg.cxx
+++ b/cui/source/customize/eventdlg.cxx
@@ -56,7 +56,7 @@ using namespace ::com::sun::star;
SvxEventConfigPage::SvxEventConfigPage(vcl::Window *pParent, const SfxItemSet& rSet,
SvxEventConfigPage::EarlyInit)
- : _SvxMacroTabPage(pParent, "EventsConfigPage",
+ : SvxMacroTabPage_(pParent, "EventsConfigPage",
"cui/ui/eventsconfigpage.ui", rSet)
, bAppConfig(true)
{
@@ -118,7 +118,7 @@ void SvxEventConfigPage::dispose()
pE = SvTreeListBox::NextSibling( pE );
}
m_pSaveInListBox.clear();
- _SvxMacroTabPage::dispose();
+ SvxMacroTabPage_::dispose();
}
void SvxEventConfigPage::ImplInitDocument()
@@ -177,7 +177,7 @@ IMPL_LINK_NOARG_TYPED( SvxEventConfigPage, SelectHdl_Impl, ListBox&, void )
if ( *bApp )
{
SetReadOnly( false );
- _SvxMacroTabPage::DisplayAppEvents( true );
+ SvxMacroTabPage_::DisplayAppEvents( true );
}
else
{
@@ -203,7 +203,7 @@ IMPL_LINK_NOARG_TYPED( SvxEventConfigPage, SelectHdl_Impl, ListBox&, void )
}
SetReadOnly( isReadonly );
- _SvxMacroTabPage::DisplayAppEvents( false );
+ SvxMacroTabPage_::DisplayAppEvents( false );
}
mpImpl->pEventLB->SetUpdateMode( true );
@@ -211,7 +211,7 @@ IMPL_LINK_NOARG_TYPED( SvxEventConfigPage, SelectHdl_Impl, ListBox&, void )
bool SvxEventConfigPage::FillItemSet( SfxItemSet* rSet )
{
- return _SvxMacroTabPage::FillItemSet( rSet );
+ return SvxMacroTabPage_::FillItemSet( rSet );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */