diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-11-10 16:03:16 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-11-10 16:15:45 +0000 |
commit | 98fd6fa45f48599ee59d8d3f43b26bbde94e67c0 (patch) | |
tree | 84ad9de7c43d03d04ba3bcb210ce505279733d44 /sw | |
parent | 749fe62b32acc3159cf2756aae16df36f091a862 (diff) |
micro opt
Change-Id: I4ef86a56780cf9ea8fe244a5347a79099bc05979
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/uibase/utlui/navipi.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/utlui/navipi.cxx b/sw/source/uibase/utlui/navipi.cxx index 5d5e021eace0..6ef4408b6402 100644 --- a/sw/source/uibase/utlui/navipi.cxx +++ b/sw/source/uibase/utlui/navipi.cxx @@ -233,7 +233,7 @@ IMPL_LINK( SwNavigationPI, ToolBoxSelectHdl, ToolBox *, pBox, void ) bool* pbNext = new bool(false); Application::PostUserEvent(LINK(pView, SwView, MoveNavigationHdl), pbNext, true); } - if (sCommand == "forward") + else if (sCommand == "forward") { // #i75416# move the execution of the search to an asynchronously called static link bool* pbNext = new bool(true); |