summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-11-10 16:10:07 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-11-10 16:15:45 +0000
commit8445764681bfe7bd6cd31194878e1314a8fafa3b (patch)
treea84c81b37700ca3f0998b0591f309b00ba2ceac3
parent98fd6fa45f48599ee59d8d3f43b26bbde94e67c0 (diff)
Resolves: tdf#103809 the argument is a bool* not a VclPtr
Change-Id: Ia07f4ff7b243708304186c840135ec1180621fa5
-rw-r--r--sw/source/uibase/utlui/navipi.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/utlui/navipi.cxx b/sw/source/uibase/utlui/navipi.cxx
index 6ef4408b6402..18aaeb73ac72 100644
--- a/sw/source/uibase/utlui/navipi.cxx
+++ b/sw/source/uibase/utlui/navipi.cxx
@@ -231,13 +231,13 @@ IMPL_LINK( SwNavigationPI, ToolBoxSelectHdl, ToolBox *, pBox, void )
{
// #i75416# move the execution of the search to an asynchronously called static link
bool* pbNext = new bool(false);
- Application::PostUserEvent(LINK(pView, SwView, MoveNavigationHdl), pbNext, true);
+ Application::PostUserEvent(LINK(pView, SwView, MoveNavigationHdl), pbNext);
}
else if (sCommand == "forward")
{
// #i75416# move the execution of the search to an asynchronously called static link
bool* pbNext = new bool(true);
- Application::PostUserEvent(LINK(pView, SwView, MoveNavigationHdl), pbNext, true);
+ Application::PostUserEvent(LINK(pView, SwView, MoveNavigationHdl), pbNext);
}
else if (sCommand == "root")
{