summaryrefslogtreecommitdiffstats
path: root/framework
diff options
context:
space:
mode:
authorRoman Kuznetsov <antilibreoffice@gmail.com>2019-06-14 10:59:43 +0200
committerRoman Kuznetsov <antilibreoffice@gmail.com>2019-06-14 18:07:28 +0200
commit846c68876c214d501bf163eede4288d7a307ec8a (patch)
tree293f82476050a427dc2371ee287a3f608fff6894 /framework
parentAvoid -fsanitize=signed-integer-overflow (diff)
downloadcore-846c68876c214d501bf163eede4288d7a307ec8a.tar.gz
core-846c68876c214d501bf163eede4288d7a307ec8a.zip
tdf#124642 Delete Formula item from View->Toolbars in Writer
Change-Id: I5817ba3c8c758e31641b805083133ce4b8bbb094 Reviewed-on: https://gerrit.libreoffice.org/74025 Tested-by: Jenkins Reviewed-by: Roman Kuznetsov <antilibreoffice@gmail.com>
Diffstat (limited to 'framework')
-rw-r--r--framework/source/uielement/toolbarsmenucontroller.cxx20
1 files changed, 5 insertions, 15 deletions
diff --git a/framework/source/uielement/toolbarsmenucontroller.cxx b/framework/source/uielement/toolbarsmenucontroller.cxx
index 945df54659c0..69ddcae67924 100644
--- a/framework/source/uielement/toolbarsmenucontroller.cxx
+++ b/framework/source/uielement/toolbarsmenucontroller.cxx
@@ -408,21 +408,11 @@ void ToolbarsMenuController::fillPopupMenu( Reference< css::awt::XPopupMenu > co
}
// Create commands for non-toolbars
- if ( m_aModuleIdentifier == "com.sun.star.text.TextDocument" ||
- m_aModuleIdentifier == "com.sun.star.text.WebDocument" ||
- m_aModuleIdentifier == "com.sun.star.text.GlobalDocument" ||
- m_aModuleIdentifier == "com.sun.star.drawing.DrawingDocument" ||
- m_aModuleIdentifier == "com.sun.star.presentation.PresentationDocument" ||
- m_aModuleIdentifier == "com.sun.star.sheet.SpreadsheetDocument" )
- {
- if ( m_aModuleIdentifier == "com.sun.star.drawing.DrawingDocument" ||
- m_aModuleIdentifier == "com.sun.star.presentation.PresentationDocument" )
- addCommand( m_xPopupMenu, ".uno:ColorControl", "" );
- else if ( m_aModuleIdentifier == "com.sun.star.sheet.SpreadsheetDocument" )
- addCommand( m_xPopupMenu, ".uno:InputLineVisible", "" );
- else
- addCommand( m_xPopupMenu, ".uno:InsertFormula", "" );
- }
+ if ( m_aModuleIdentifier == "com.sun.star.drawing.DrawingDocument" ||
+ m_aModuleIdentifier == "com.sun.star.presentation.PresentationDocument" )
+ addCommand( m_xPopupMenu, ".uno:ColorControl", "" );
+ else if ( m_aModuleIdentifier == "com.sun.star.sheet.SpreadsheetDocument" )
+ addCommand( m_xPopupMenu, ".uno:InputLineVisible", "" );
bool bAddCommand( true );
SvtCommandOptions aCmdOptions;