CodeEditorNOGTKCompilationFix.diff

CodeEditor NOGTK compilation fix - Zbigniew Rebacz, 01/26/2016 08:40 PM

Download (695 Bytes)

View differences:

PythonSyntax.cpp (kopia robocza)
166 166

  
167 167
PythonSyntax::Identation::Type PythonSyntax::FindIdentationType(CodeEditor& editor, const WString& line)
168 168
{
169
	Identation::Type type = Identation::None;
169
	Identation::Type type = Identation::Unknown;
170 170
	if(line.StartsWith("\t"))
171 171
		type = Identation::Tab;
172 172
	else
PythonSyntax.h (kopia robocza)
4 4
		enum Type {
5 5
			Tab = 0,
6 6
			Space,
7
			None
7
			Unknown
8 8
		};
9 9
	};
10 10