View | Details | Raw Unified | Return to issue 17965
Collapse All | Expand All

(-)sc/source/ui/src/menue.src (-4 / +4 lines)
Lines 1132-1139 Menu SCCFG_PLUGINMENU Link Here
1132
					};
1133
					};
1133
					MenuItem
1134
					MenuItem
1134
					{
1135
					{
1135
						Identifier = SID_DELETE ;
1136
						Identifier = SID_DELETE_CONTENTS ;
1136
						HelpId = SID_DELETE ;
1137
						HelpId = SID_DELETE_CONTENTS ;
1137
						Text = "Inhalte l~öschen..." ;
1138
						Text = "Inhalte l~öschen..." ;
1138
						Text [ ENGLISH ] = "Dele~te Data..." ;
1139
						Text [ ENGLISH ] = "Dele~te Data..." ;
1139
						Text [ norwegian ] = "Dele~te Data..." ;
1140
						Text [ norwegian ] = "Dele~te Data..." ;
Lines 5596-5603 Menu SCCFG_MENUBAR Link Here
5596
					};
5597
					};
5597
					MenuItem
5598
					MenuItem
5598
					{
5599
					{
5599
						Identifier = SID_DELETE ;
5600
						Identifier = SID_DELETE_CONTENTS ;
5600
						HelpId = SID_DELETE ;
5601
						HelpId = SID_DELETE_CONTENTS ;
5601
						Text = "Inhalte l~öschen..." ;
5602
						Text = "Inhalte l~öschen..." ;
5602
						Text [ ENGLISH ] = "Dele~te Data..." ;
5603
						Text [ ENGLISH ] = "Dele~te Data..." ;
5603
						Text [ norwegian ] = "Dele~te Data..." ;
5604
						Text [ norwegian ] = "Dele~te Data..." ;
(-)sc/source/ui/view/cellsh1.cxx (-2 / +2 lines)
Lines 338-349 void ScCellShell::ExecuteEdit( SfxReques Link Here
338
		//	Inhalte von Zellen loeschen
338
		//	Inhalte von Zellen loeschen
339
		//
339
		//
340
340
341
		case SID_DELETE_CONTENTS:
341
		case SID_DELETE:
342
			pTabViewShell->DeleteContents( IDF_CONTENTS );
342
			pTabViewShell->DeleteContents( IDF_CONTENTS );
343
			rReq.Done();
343
			rReq.Done();
344
			break;
344
			break;
345
345
346
		case SID_DELETE:
346
		case SID_DELETE_CONTENTS:
347
			{
347
			{
348
				USHORT	nFlags = IDF_NONE;
348
				USHORT	nFlags = IDF_NONE;
349
349

Return to issue 17965