diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-09-18 10:51:53 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-09-18 10:51:53 +0100 |
commit | d4edce3b72d585915516a0a27c4815a0d4996cfb (patch) | |
tree | cdf584d11571571b7b8514630d0e6e09431df2f8 | |
parent | 2e93541d00f9d4aaa6ad2aeb35ee0c901d216cc0 (diff) |
Resolves: fdo#69440 only ask for tabcontrol in builder dialogs
Change-Id: I6001f8921f3b90283525355b0094c4377c42c663
-rw-r--r-- | sfx2/source/appl/sfxhelp.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sfx2/source/appl/sfxhelp.cxx b/sfx2/source/appl/sfxhelp.cxx index 6d5244b2fba1..e798da9d0221 100644 --- a/sfx2/source/appl/sfxhelp.cxx +++ b/sfx2/source/appl/sfxhelp.cxx @@ -589,7 +589,8 @@ sal_Bool SfxHelp::Start_Impl(const OUString& rURL, const Window* pWindow, const //see if it has a TabControl and ask the active tab of //that for help bTriedTabPage = true; - TabControl *pCtrl = ((Dialog*)pParent)->get<TabControl>("tabcontrol"); + Dialog *pDialog = ((Dialog*)pParent); + TabControl *pCtrl = pDialog->hasBuilder() ? pDialog->get<TabControl>("tabcontrol") : NULL; TabPage* pTabPage = pCtrl ? pCtrl->GetTabPage(pCtrl->GetCurPageId()) : NULL; Window *pTabChild = pTabPage ? pTabPage->GetWindow(WINDOW_FIRSTCHILD) : NULL; if (pTabChild) |