@@ -156,12 +156,12 @@ along with Foobar. If not, see
156156
157157 async Task ResetCuesheetClicked ()
158158 {
159- var parameters = new DialogParameters <ConfirmDialog >
159+ var parameters = new DialogParameters <ConfirmationDialog >
160160 {
161161 { x => x .ConfirmText , _localizer [" Are you sure you want reset the cuesheet? All information you have not saved are lost!" ] },
162162 };
163163 var options = new DialogOptions () { BackdropClick = false };
164- var dialog = await _dialogService .ShowAsync <ConfirmDialog >(_localizer [" Confirm" ], parameters , options );
164+ var dialog = await _dialogService .ShowAsync <ConfirmationDialog >(_localizer [" Confirm" ], parameters , options );
165165 var result = await dialog .Result ;
166166 if (result ? .Canceled == false )
167167 {
@@ -172,12 +172,12 @@ along with Foobar. If not, see
172172
173173 async Task ResetApplicationClicked ()
174174 {
175- var parameters = new DialogParameters <ConfirmDialog >
175+ var parameters = new DialogParameters <ConfirmationDialog >
176176 {
177177 { x => x .ConfirmText , _localizer [" Are you sure you want reset the application? All information you have not saved are lost!" ] },
178178 };
179179 var options = new DialogOptions () { BackdropClick = false };
180- var dialog = await _dialogService .ShowAsync <ConfirmDialog >(_localizer [" Confirm" ], parameters , options );
180+ var dialog = await _dialogService .ShowAsync <ConfirmationDialog >(_localizer [" Confirm" ], parameters , options );
181181 var result = await dialog .Result ;
182182 if (result ? .Canceled == false )
183183 {
@@ -192,12 +192,12 @@ along with Foobar. If not, see
192192 // Check if there are already any changes
193193 if ((TraceChangeManager .CanUndo ) || (TraceChangeManager .CanRedo ))
194194 {
195- var parameters = new DialogParameters <ConfirmDialog >
195+ var parameters = new DialogParameters <ConfirmationDialog >
196196 {
197197 { x => x .ConfirmText , _localizer [" Are you sure you want reset the cuesheet? All information you have not saved are lost!" ] },
198198 };
199199 var options = new DialogOptions () { BackdropClick = false };
200- var dialog = await _dialogService .ShowAsync <ConfirmDialog >(_localizer [" Confirm" ], parameters , options );
200+ var dialog = await _dialogService .ShowAsync <ConfirmationDialog >(_localizer [" Confirm" ], parameters , options );
201201 var result = await dialog .Result ;
202202 if (result ? .Canceled == false )
203203 {
0 commit comments