diff options
author | Philipp Lohmann [pl] <Philipp.Lohmann@Sun.COM> | 2010-06-04 13:46:22 +0200 |
---|---|---|
committer | Philipp Lohmann [pl] <Philipp.Lohmann@Sun.COM> | 2010-06-04 13:46:22 +0200 |
commit | 27f199af29794fffb97eb73357c7f9dd4dae0201 (patch) | |
tree | ff3c7514eafccd8e68842e3004f23c7578a1718d /sw/source/ui/ribbar | |
parent | dcce5a9a1823b1e5b3b8946b28dc8871afa0a6ba (diff) |
changehid: #i111874# remove SmartId, make HID of type rtl::OString, fill in dummies for all explicit help ids
Diffstat (limited to 'sw/source/ui/ribbar')
-rw-r--r-- | sw/source/ui/ribbar/inputwin.cxx | 3 | ||||
-rw-r--r-- | sw/source/ui/ribbar/workctrl.cxx | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sw/source/ui/ribbar/inputwin.cxx b/sw/source/ui/ribbar/inputwin.cxx index c14f91632a4c..f7d9067a1ded 100644 --- a/sw/source/ui/ribbar/inputwin.cxx +++ b/sw/source/ui/ribbar/inputwin.cxx @@ -90,7 +90,8 @@ SwInputWindow::SwInputWindow( Window* pParent, SfxBindings* pBind ) InsertSeparator ( 1 ); InsertSeparator (); InsertWindow( ED_FORMULA, &aEdit); - SetHelpId(ED_FORMULA, HID_EDIT_FORMULA); + // FIXME: HELPID + SetHelpId(ED_FORMULA, ""/*HID_EDIT_FORMULA*/); BOOL bHC = GetSettings().GetStyleSettings().GetHighContrastMode(); SetItemImage( FN_FORMULA_CALC, pManager->GetImage(FN_FORMULA_CALC, bHC )); diff --git a/sw/source/ui/ribbar/workctrl.cxx b/sw/source/ui/ribbar/workctrl.cxx index c75cb3f0dfc4..aaa5b19b1f4e 100644 --- a/sw/source/ui/ribbar/workctrl.cxx +++ b/sw/source/ui/ribbar/workctrl.cxx @@ -492,7 +492,8 @@ SwScrollNaviPopup::SwScrollNaviPopup( USHORT nId, const Reference< XFrame >& rFr { USHORT i; - aToolBox.SetHelpId(HID_NAVI_VS); + // FIXME: HELPID + aToolBox.SetHelpId(""/*HID_NAVI_VS*/); aToolBox.SetLineCount( 2 ); aToolBox.SetOutStyle(TOOLBOX_STYLE_FLAT); for( i = 0; i < NID_COUNT; i++) @@ -508,7 +509,8 @@ SwScrollNaviPopup::SwScrollNaviPopup( USHORT nId, const Reference< XFrame >& rFr nTbxBits = TIB_CHECKABLE; } aToolBox.InsertItem(nNaviId, sText, nTbxBits); - aToolBox.SetHelpId( nNaviId, aNavigationHelpIds[i] ); + // FIXME: HELPID + aToolBox.SetHelpId( nNaviId, ""/*aNavigationHelpIds[i]*/ ); } ApplyImageList(); aToolBox.InsertBreak(NID_COUNT/2); |