aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Persson2007-03-13 22:31:55 +0000
committerLars Persson2007-03-13 22:31:55 +0000
commitf447d9d38fc5676db08757819cfdbde0279601ab (patch)
tree546204a82151918eb97066a204e4e91c79265cb6
parent922c0a7ea0a47eb8a6445866b1ef6c84ccb65337 (diff)
downloadscummvm-rg350-f447d9d38fc5676db08757819cfdbde0279601ab.tar.gz
scummvm-rg350-f447d9d38fc5676db08757819cfdbde0279601ab.tar.bz2
scummvm-rg350-f447d9d38fc5676db08757819cfdbde0279601ab.zip
Remove debugger hack for Symbian OS!
svn-id: r26127
-rw-r--r--gui/debugger.cpp2
-rw-r--r--gui/debugger.h8
2 files changed, 0 insertions, 10 deletions
diff --git a/gui/debugger.cpp b/gui/debugger.cpp
index e31d7fc771..38a2ef7d15 100644
--- a/gui/debugger.cpp
+++ b/gui/debugger.cpp
@@ -78,7 +78,6 @@ int Debugger::DebugPrintf(const char *format, ...) {
return count;
}
-#ifndef __SYMBIAN32__ // gcc/UIQ doesn't like the debugger code for some reason? Actually get a cc1plus core dump here :)
void Debugger::attach(const char *entry) {
g_system->setFeatureState(OSystem::kFeatureVirtualKeyboard, true);
@@ -116,7 +115,6 @@ void Debugger::onFrame() {
detach();
}
}
-#endif // of ifndef __SYMBIAN32__ // gcc/UIQ doesn't like the debugger code for some reason? Actually get a cc1plus core dump here :)
// Main Debugger Loop
void Debugger::enter() {
diff --git a/gui/debugger.h b/gui/debugger.h
index 568c4e3bc9..34665cf645 100644
--- a/gui/debugger.h
+++ b/gui/debugger.h
@@ -38,17 +38,9 @@ public:
int DebugPrintf(const char *format, ...);
-#ifndef __SYMBIAN32__ // gcc/UIQ doesn't like the debugger code for some reason? Actually get a cc1plus core dump here :)
- // FIXME: Fingolfin asks: This code *used* to be a problem when GUI::Debugger
- // was a template class. But is it really still causing problems, or can
- // this hack go away now?
virtual void onFrame();
virtual void attach(const char *entry = 0);
-#else
- void onFrame() {}
- void attach(const char *entry = 0) {}
-#endif
bool isAttached() const { return _isAttached; }
protected: