diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2016-05-12 22:24:13 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2016-05-13 05:07:44 +0000 |
commit | e809b97b63c16326ef45c8e41c428c9fb7f49c4d (patch) | |
tree | 540f023564085fed603d84d39736a8525c7f532e /svtools | |
parent | 55a07f3e9160ff5a1dffd4228f6e1bcf3e23922f (diff) |
Typo: ExcecuteContextMenuAction->ExecuteContextMenuAction
Change-Id: Ifb121344a8f235d71bab33c03808e3f44d7bee7c
Reviewed-on: https://gerrit.libreoffice.org/24942
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/contnr/fileview.cxx | 4 | ||||
-rw-r--r-- | svtools/source/contnr/svimpbox.cxx | 2 | ||||
-rw-r--r-- | svtools/source/contnr/treelistbox.cxx | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/svtools/source/contnr/fileview.cxx b/svtools/source/contnr/fileview.cxx index cd4d62482457..d7b4a8900910 100644 --- a/svtools/source/contnr/fileview.cxx +++ b/svtools/source/contnr/fileview.cxx @@ -205,7 +205,7 @@ public: DECL_LINK_TYPED(ResetQuickSearch_Impl, Timer *, void); virtual std::unique_ptr<PopupMenu> CreateContextMenu() override; - virtual void ExcecuteContextMenuAction( sal_uInt16 nSelectedPopentry ) override; + virtual void ExecuteContextMenuAction( sal_uInt16 nSelectedPopentry ) override; }; // provides a list of _unique_ Entries @@ -711,7 +711,7 @@ std::unique_ptr<PopupMenu> ViewTabListBox_Impl::CreateContextMenu() } -void ViewTabListBox_Impl::ExcecuteContextMenuAction( sal_uInt16 nSelectedPopupEntry ) +void ViewTabListBox_Impl::ExecuteContextMenuAction( sal_uInt16 nSelectedPopupEntry ) { switch ( nSelectedPopupEntry ) { diff --git a/svtools/source/contnr/svimpbox.cxx b/svtools/source/contnr/svimpbox.cxx index d180559ef72e..c5623554e210 100644 --- a/svtools/source/contnr/svimpbox.cxx +++ b/svtools/source/contnr/svimpbox.cxx @@ -3030,7 +3030,7 @@ void SvImpLBox::Command( const CommandEvent& rCEvt ) // do action for selected entry in popup menu sal_uInt16 nMenuAction = pPopup->Execute( pView, aPopupPos ); if ( nMenuAction ) - pView->ExcecuteContextMenuAction( nMenuAction ); + pView->ExecuteContextMenuAction( nMenuAction ); lcl_DeleteSubPopups(pPopup.get()); } } diff --git a/svtools/source/contnr/treelistbox.cxx b/svtools/source/contnr/treelistbox.cxx index a7e291d08c46..30080695b258 100644 --- a/svtools/source/contnr/treelistbox.cxx +++ b/svtools/source/contnr/treelistbox.cxx @@ -3731,9 +3731,9 @@ std::unique_ptr<PopupMenu> SvTreeListBox::CreateContextMenu() return nullptr; } -void SvTreeListBox::ExcecuteContextMenuAction( sal_uInt16 ) +void SvTreeListBox::ExecuteContextMenuAction( sal_uInt16 ) { - SAL_INFO( "svtools", "SvTreeListBox::ExcecuteContextMenuAction(): now there's happening nothing!" ); + SAL_INFO( "svtools", "SvTreeListBox::ExecuteContextMenuAction(): now there's happening nothing!" ); } void SvTreeListBox::EnableContextMenuHandling() |