diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-14 14:52:04 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-14 20:30:08 +0000 |
commit | 06983ef3c00c5755ef3369c1149c10ba8d3f4d4b (patch) | |
tree | 99384a36b7a45b888b5152cd3a083988e8588358 /svtools | |
parent | e867843e76e1a8ce1a0fa85b122485a241dc2baf (diff) |
do TODO: replace ImplCallEventListeners() by CallEventListeners() in vcl
Change-Id: If47baad0ec31f18fcb55c7db86fb2a316dd0807f
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/contnr/svtabbx.cxx | 2 | ||||
-rw-r--r-- | svtools/source/table/tablecontrol.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/contnr/svtabbx.cxx b/svtools/source/contnr/svtabbx.cxx index 5c00f095a567..d19082ccb466 100644 --- a/svtools/source/contnr/svtabbx.cxx +++ b/svtools/source/contnr/svtabbx.cxx @@ -328,7 +328,7 @@ void SvTabListBox::SetEntryText(const OUString& rStr, SvTreeListEntry* pEntry, s GetModel()->InvalidateEntry( pEntry ); TabListBoxEventData* pData = new TabListBoxEventData( pEntry, nTextColumn, sOldText ); - ImplCallEventListeners( VCLEVENT_TABLECELL_NAMECHANGED, pData ); + CallEventListeners( VCLEVENT_TABLECELL_NAMECHANGED, pData ); delete pData; } diff --git a/svtools/source/table/tablecontrol.cxx b/svtools/source/table/tablecontrol.cxx index eefe81ab2ea5..de59f689012d 100644 --- a/svtools/source/table/tablecontrol.cxx +++ b/svtools/source/table/tablecontrol.cxx @@ -64,7 +64,7 @@ namespace svt { namespace table TableControl::~TableControl() { - ImplCallEventListeners( VCLEVENT_OBJECT_DYING ); + CallEventListeners( VCLEVENT_OBJECT_DYING ); m_pImpl->setModel( PTableModel() ); m_pImpl->disposeAccessible(); |