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

(-)sc/source/ui/view/cellsh1.cxx (-4 / +12 lines)
Lines 192-204 void ScCellShell::ExecuteEdit( SfxReques Link Here
192
			break;
192
			break;
193
193
194
		case SID_DEL_ROWS:
194
		case SID_DEL_ROWS:
195
			pTabViewShell->DeleteCells( DEL_DELROWS );
195
			{
196
			rReq.Done();
196
				WaitObject aWait( GetViewData()->GetDialogParent() );
197
				pTabViewShell->CopyToClip( NULL, FALSE, FALSE, TRUE );
198
				pTabViewShell->DeleteCells( DEL_DELROWS );
199
				rReq.Done();
200
			}
197
			break;
201
			break;
198
202
199
		case SID_DEL_COLS:
203
		case SID_DEL_COLS:
200
			pTabViewShell->DeleteCells( DEL_DELCOLS );
204
			{
201
			rReq.Done();
205
				WaitObject aWait( GetViewData()->GetDialogParent() );
206
				pTabViewShell->CopyToClip( NULL, FALSE, FALSE, TRUE );
207
				pTabViewShell->DeleteCells( DEL_DELCOLS );
208
				rReq.Done();
209
			}
202
			break;
210
			break;
203
211
204
		case FID_INS_CELL:
212
		case FID_INS_CELL:

Return to issue 71921