From 782ba00cbc48648da4b8e9231afe00c7d0198d66 Mon Sep 17 00:00:00 2001 From: hikerstk Date: Tue, 16 Aug 2011 13:07:09 +0000 Subject: [PATCH] Fix/work-around for compilation problem: abstract method was not defined. coug36: I think your r9532 broke something, there is possible a better way of fixing this. git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@9534 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/states_screens/dialogs/message_dialog.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/states_screens/dialogs/message_dialog.hpp b/src/states_screens/dialogs/message_dialog.hpp index 8128c88f1..23426e6e4 100644 --- a/src/states_screens/dialogs/message_dialog.hpp +++ b/src/states_screens/dialogs/message_dialog.hpp @@ -44,7 +44,7 @@ public: * \note The dialog is not closed automatically, close it in the callback if this * behavior is desired. */ - virtual void onConfirm() = 0; + virtual void onConfirm() {}; /** \brief Implement to be notified of dialog cancelled. * \note The default implementation is to close the modal dialog, but you may override