aboutsummaryrefslogtreecommitdiff
path: root/sky
diff options
context:
space:
mode:
Diffstat (limited to 'sky')
-rw-r--r--sky/debug.cpp2
-rw-r--r--sky/debug.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/sky/debug.cpp b/sky/debug.cpp
index 28b979f776..e33589f962 100644
--- a/sky/debug.cpp
+++ b/sky/debug.cpp
@@ -1290,6 +1290,8 @@ Debugger::Debugger(Logic *logic, Mouse *mouse, Screen *screen, SkyCompact *skyCo
DCmd_Register("section", &Debugger::Cmd_Section);
}
+Debugger::~Debugger() {} // we need this here for __SYMBIAN32__
+
void Debugger::preEnter() {
}
diff --git a/sky/debug.h b/sky/debug.h
index 30908693be..6eb5b6c0b3 100644
--- a/sky/debug.h
+++ b/sky/debug.h
@@ -36,6 +36,7 @@ class SkyCompact;
class Debugger : public Common::Debugger<Debugger> {
public:
Debugger(Logic *logic, Mouse *mouse, Screen *screen, SkyCompact *skyCompact);
+ virtual ~Debugger(); // we need this here for __SYMBIAN32__ archaic gcc/UIQ
bool showGrid() { return _showGrid; }
protected: