diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-11-10 16:10:07 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-11-10 16:15:45 +0000 |
commit | 8445764681bfe7bd6cd31194878e1314a8fafa3b (patch) | |
tree | a84c81b37700ca3f0998b0591f309b00ba2ceac3 | |
parent | 98fd6fa45f48599ee59d8d3f43b26bbde94e67c0 (diff) |
Resolves: tdf#103809 the argument is a bool* not a VclPtr
Change-Id: Ia07f4ff7b243708304186c840135ec1180621fa5
-rw-r--r-- | sw/source/uibase/utlui/navipi.cxx | 4 |
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") { |