diff -urN ooo_DEV300_m84_src.orig/sdext/source/presenter/PresenterController.cxx ooo_DEV300_m84_src/sdext/source/presenter/PresenterController.cxx --- ooo_DEV300_m84_src.orig/sdext/source/presenter/PresenterController.cxx 2010-07-02 10:53:23.000000000 +0200 +++ ooo_DEV300_m84_src/sdext/source/presenter/PresenterController.cxx 2010-07-02 10:53:39.000000000 +0200 @@ -1085,11 +1085,12 @@ case awt::Key::F1: // Toggle the help view. if (mpWindowManager.get() != NULL) + { if (mpWindowManager->GetViewMode() != PresenterWindowManager::VM_Help) mpWindowManager->SetViewMode(PresenterWindowManager::VM_Help); else mpWindowManager->SetHelpViewState(false); - + } break; default: diff -urN ooo_DEV300_m84_src.orig/sdext/source/presenter/PresenterTextView.cxx ooo_DEV300_m84_src/sdext/source/presenter/PresenterTextView.cxx --- ooo_DEV300_m84_src.orig/sdext/source/presenter/PresenterTextView.cxx 2010-07-02 10:53:23.000000000 +0200 +++ ooo_DEV300_m84_src/sdext/source/presenter/PresenterTextView.cxx 2010-07-02 10:53:39.000000000 +0200 @@ -380,10 +380,12 @@ // the previous or the start of the next paragraph. pParagraph = GetParagraph(nParagraphIndex); if (pParagraph) + { if (nDistance<0) nCharacterIndex = pParagraph->GetCharacterCount(); else nCharacterIndex = 0; + } } } else