summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-11-10 16:10:07 +0000
committerTor Lillqvist <tml@collabora.com>2016-11-13 11:04:30 +0200
commit3498a66f723dd2b57897a21a1a65c66a03688f15 (patch)
tree0ada3ee6a1a30db0672d39b1c84ff0e13cc81780
parent688612e06d0c38fd6ce90fef466d5a4faefddc01 (diff)
Resolves: tdf#103809 the argument is a bool* not a VclPtr
(cherry picked from commit 8445764681bfe7bd6cd31194878e1314a8fafa3b) Change-Id: Ia07f4ff7b243708304186c840135ec1180621fa5 Reviewed-on: https://gerrit.libreoffice.org/30760 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
-rw-r--r--sw/source/uibase/utlui/navipi.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/utlui/navipi.cxx b/sw/source/uibase/utlui/navipi.cxx
index 2a62187f522b..365653e491ef 100644
--- a/sw/source/uibase/utlui/navipi.cxx
+++ b/sw/source/uibase/utlui/navipi.cxx
@@ -230,7 +230,7 @@ IMPL_LINK_TYPED( SwNavigationPI, ToolBoxSelectHdl, ToolBox *, pBox, void )
{
// #i75416# move the execution of the search to an asynchronously called static link
bool* pbNext = new bool( FN_DOWN == nCurrItemId );
- Application::PostUserEvent( LINK(pView, SwView, MoveNavigationHdl), pbNext, true );
+ Application::PostUserEvent( LINK(pView, SwView, MoveNavigationHdl), pbNext );
}
break;
case FN_SHOW_ROOT: