Fixed a typo and a warning
This commit is contained in:
parent
bedd49ce17
commit
1d955c1506
@ -22,7 +22,6 @@ using System;
|
||||
using Avalonia.Controls;
|
||||
|
||||
using Nuclex.Avalonia.ViewModels;
|
||||
using Nuclex.Avalonie.ViewModels;
|
||||
|
||||
namespace Nuclex.Avalonia.AutoBinding {
|
||||
|
||||
@ -92,6 +91,7 @@ namespace Nuclex.Avalonia.AutoBinding {
|
||||
dialogViewModel.Submitted -= handler;
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
} // namespace Nuclex.Avalonia.AutoBinding
|
||||
|
@ -599,7 +599,7 @@ namespace Nuclex.Avalonia.Collections {
|
||||
);
|
||||
if(!this.fetchedPages[pageIndex]) {
|
||||
int count = Math.Min(
|
||||
this.assumedCount.Value - (this.pageSize * pageIndex),
|
||||
this.assumedCount!.Value - (this.pageSize * pageIndex),
|
||||
this.pageSize
|
||||
);
|
||||
|
||||
|
@ -21,7 +21,7 @@ using System;
|
||||
|
||||
using Nuclex.Avalonia.ViewModels;
|
||||
|
||||
namespace Nuclex.Avalonie.ViewModels {
|
||||
namespace Nuclex.Avalonia.ViewModels {
|
||||
|
||||
/// <summary>Interface for dialog view models (typically modal ones)</summary>
|
||||
public interface IDialogViewModel {
|
||||
@ -31,4 +31,4 @@ namespace Nuclex.Avalonie.ViewModels {
|
||||
|
||||
}
|
||||
|
||||
} // namespace Nuclex.Avalonie.ViewModels
|
||||
} // namespace Nuclex.Avalonia.ViewModels
|
||||
|
Loading…
Reference in New Issue
Block a user