From 03ed11fa0fc8d893b10cf370d1d7ac71ca75d3bc Mon Sep 17 00:00:00 2001 From: The Dax Date: Tue, 16 Sep 2014 03:57:39 -0400 Subject: [PATCH] Change OnChange back to OnChoice. Not like it's used anyway, but it doesn't hurt. --- ui/ui_screen.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/ui_screen.h b/ui/ui_screen.h index 42362ba08..edabf4d26 100644 --- a/ui/ui_screen.h +++ b/ui/ui_screen.h @@ -112,7 +112,7 @@ class MessagePopupScreen : public PopupScreen { public: MessagePopupScreen(std::string title, std::string message, std::string button1, std::string button2, std::function callback) : PopupScreen(title, button1, button2), message_(message), callback_(callback) {} - UI::Event OnChange; + UI::Event OnChoice; protected: virtual bool FillVertical() const override { return false; }