summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-11-10 16:10:07 +0000
committerMaxim Monastirsky <momonasmon@gmail.com>2016-11-11 00:38:25 +0000
commit327dd016a401c96c21a0b87acf92fb6510c5d4b5 (patch)
tree8f09f723841f04eab33450d00cb4db8201809132 /sw
parent5c4ace9cc3eccbe252b5d284abcdc640ac763a50 (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>
Diffstat (limited to 'sw')
-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: