summaryrefslogtreecommitdiffstats
path: root/src/debugmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/debugmanager.cpp')
-rw-r--r--src/debugmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debugmanager.cpp b/src/debugmanager.cpp
index f33c6dc..5350b7c 100644
--- a/src/debugmanager.cpp
+++ b/src/debugmanager.cpp
@@ -72,7 +72,7 @@ void DebugManager::urlOpened( TextDocument * td )
GpsimProcessorList::iterator end = m_processors.end();
for ( GpsimProcessorList::iterator it = m_processors.begin(); it != end; ++it )
{
- if ( !(*it)->sourceFileList().tqcontains( td->url().path() ) )
+ if ( !(*it)->sourceFileList().contains( td->url().path() ) )
continue;
(*it)->setDebugMode( (td->guessedCodeType() == TextDocument::ct_asm) ? GpsimDebugger::AsmDebugger : GpsimDebugger::HLLDebugger );