https://bz.apache.org/ooo/show_bug.cgi?id=125129
--- Comment #15 from [email protected] --- According to OpenGrok FN_FORMAT_FRAME_DLG appears in 14 files + many translations. Of the relevant ones, we have: 1. main/sw/source/ui/shells/frmsh.cxx is probably the most relevant, does SID_COLOR_TABLE and: 450 //UUUU create needed items for XPropertyList entries from the DrawModel so that 451 // the Area TabPage can access them 2. main/sw/sdi/_frmsh.sdi FN_FORMAT_FRAME_DLG // status(final|play) [ ExecMethod = Execute ; StateMethod = GetState ; DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; ] 3. main/sw/sdi/swriter.sdi SfxVoidItem FrameDialog FN_FORMAT_FRAME_DLG Asynchron; 4. main/sw/source/ui/uiview/view2.cxx void SwView::ExecuteStatusLine(SfxRequest &rReq) { ... nId = FN_FORMAT_FRAME_DLG; ... if( nId ) GetViewFrame()->GetDispatcher()->Execute( static_cast< sal_uInt16 >( nId ), SFX_CALLMODE_SYNCHRON | SFX_CALLMODE_RECORD ); 5. main/sw/source/ui/utlui/content.cxx void SwContentTree::EditEntry(SvLBoxEntry* pEntry, sal_uInt8 nMode) { ... nSlot = FN_FORMAT_FRAME_DLG; ... if(nSlot) pActiveShell->GetView().GetViewFrame()-> GetDispatcher()->Execute(nSlot, SFX_CALLMODE_ASYNCHRON); 6. main/sw/source/ui/docvw/edtwin.cxx void SwEditWin::MouseButtonDown(const MouseEvent& _rMEvt) { ... case nsSelectionType::SEL_FRM: ... GetView().GetViewFrame()->GetBindings().Execute( FN_FORMAT_FRAME_DLG, 0, 0, SFX_CALLMODE_RECORD|SFX_CALLMODE_SLOT); FN_DRAW_WRAP_DLG appears in 15 files + many translations, the relevant ones being: 1. main/sw/source/ui/shells/drwbassh.cxx long 2. main/sw/source/ui/shells/grfsh.cxx long, does SID_COLOR_TABLE 3. main/sw/source/ui/shells/frmsh.cxx just like FN_FORMAT_FRAME_DLG 4. main/sw/sdi/_drwbase.sdi FN_DRAW_WRAP_DLG [ ExecMethod = Execute; StateMethod = GetState ; DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; ] 5. main/sw/sdi/_grfsh.sdi 6. main/sw/sdi/_frmsh.sdi 7. main/sw/sdi/swriter.sdi 8. main/sw/source/ui/frmdlg/wrap.cxx -- You are receiving this mail because: You are the assignee for the issue.
