diff options
author | Lars Persson | 2005-07-06 20:46:10 +0000 |
---|---|---|
committer | Lars Persson | 2005-07-06 20:46:10 +0000 |
commit | bcc3bd97081cad5127c6c8c012d5eda319c039d9 (patch) | |
tree | 8539b29ab855bca2f134e64cb5c1e657e5ff433c | |
parent | e25587d74bdd55968e0548192a3dc8b4639a468a (diff) | |
download | scummvm-rg350-bcc3bd97081cad5127c6c8c012d5eda319c039d9.tar.gz scummvm-rg350-bcc3bd97081cad5127c6c8c012d5eda319c039d9.tar.bz2 scummvm-rg350-bcc3bd97081cad5127c6c8c012d5eda319c039d9.zip |
Declared destructor virtual and testing Tortoise CVS output to see how the notification works (not)
svn-id: r18505
-rw-r--r-- | saga/console.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/saga/console.h b/saga/console.h index a32601a1e4..1fa005c62f 100644 --- a/saga/console.h +++ b/saga/console.h @@ -33,7 +33,7 @@ namespace Saga { class Console : public Common::Debugger<Console> { public: Console(SagaEngine *vm); - ~Console(void); + virtual ~Console(void); protected: virtual void preEnter(); |