[Scummvm-cvs-logs] SF.net SVN: scummvm: [26127] scummvm/trunk/gui

anotherguest at users.sourceforge.net anotherguest at users.sourceforge.net
Tue Mar 13 23:31:56 CET 2007


Revision: 26127
          http://scummvm.svn.sourceforge.net/scummvm/?rev=26127&view=rev
Author:   anotherguest
Date:     2007-03-13 15:31:55 -0700 (Tue, 13 Mar 2007)

Log Message:
-----------
Remove debugger hack for Symbian OS!

Modified Paths:
--------------
    scummvm/trunk/gui/debugger.cpp
    scummvm/trunk/gui/debugger.h

Modified: scummvm/trunk/gui/debugger.cpp
===================================================================
--- scummvm/trunk/gui/debugger.cpp	2007-03-13 20:47:59 UTC (rev 26126)
+++ scummvm/trunk/gui/debugger.cpp	2007-03-13 22:31:55 UTC (rev 26127)
@@ -78,7 +78,6 @@
 	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 @@
 			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() {

Modified: scummvm/trunk/gui/debugger.h
===================================================================
--- scummvm/trunk/gui/debugger.h	2007-03-13 20:47:59 UTC (rev 26126)
+++ scummvm/trunk/gui/debugger.h	2007-03-13 22:31:55 UTC (rev 26127)
@@ -38,17 +38,9 @@
 
 	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:


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list