Skip to content
Snippets Groups Projects
Commit e3cae2b5 authored by Thorbjørn Lindeijer's avatar Thorbjørn Lindeijer
Browse files

Comment fix and removed misplaced backslash

parent a9147e49
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ Editing ...@@ -36,7 +36,7 @@ Editing
the syntax highlighting. the syntax highlighting.
CodePaster CodePaster
* Implemented new protocol of pastebin.com including list functionality\ * Implemented new protocol of pastebin.com including list functionality
C++ Support C++ Support
* Recognize *.cu as C files * Recognize *.cu as C files
......
...@@ -1078,7 +1078,7 @@ void DebuggerPlugin::activateDebugMode() ...@@ -1078,7 +1078,7 @@ void DebuggerPlugin::activateDebugMode()
static bool isDebuggable(Core::IEditor *editor) static bool isDebuggable(Core::IEditor *editor)
{ {
// Only blacklist XML. Whitelisting would fail on C++ code in files // Only blacklist QML. Whitelisting would fail on C++ code in files
// with strange names, more harm would be done this way. // with strange names, more harm would be done this way.
Core::IFile *file = editor->file(); Core::IFile *file = editor->file();
return !(file && file->mimeType() == "application/x-qml"); return !(file && file->mimeType() == "application/x-qml");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment