summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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")
{