PR feedback

This commit is contained in:
Matt Cooley 2019-02-01 15:07:21 -08:00
commit d3b86db518
2 changed files with 2 additions and 2 deletions

View file

@ -85,7 +85,7 @@ MainPage::MainPage() :
}
}
void MainPage::OnNavigatedTo(Windows::UI::Xaml::Navigation::NavigationEventArgs^ e)
void MainPage::OnNavigatedTo(NavigationEventArgs^ e)
{
if (m_model->CalculatorViewModel)
{

View file

@ -39,7 +39,7 @@ namespace CalculatorApp
Windows::Foundation::Collections::IObservableVector<Platform::Object^>^ CreateUIElementsForCategories(_In_ Windows::Foundation::Collections::IObservableVector<CalculatorApp::Common::NavCategoryGroup^>^ categories);
protected:
virtual void OnNavigatedTo(Windows::UI::Xaml::Navigation::NavigationEventArgs^ e) override;
void OnNavigatedTo(_In_ Windows::UI::Xaml::Navigation::NavigationEventArgs^ e) override;
private:
void WindowSizeChanged(_In_ Platform::Object^ sender, _In_ Windows::UI::Core::WindowSizeChangedEventArgs^ e);