renamed files to fit style guidelines

This commit is contained in:
Hans-Albert Maritz 2015-02-15 20:16:46 +11:00
parent 7d59862c2b
commit bea3c5efb3
5 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
module dlangide.tools.d.DCDInterface;
module dlangide.tools.d.dcdinterface;
import dlangui.core.logger;
@ -125,4 +125,4 @@ class DCDInterface {
}
return result;
}
}
}

View File

@ -1,7 +1,7 @@
module dlangide.tools.d.editorTool;
module dlangide.tools.d.deditorTool;
import dlangide.tools.editorTool;
import dlangide.tools.d.DCDInterface;
import dlangide.tools.d.dcdinterface;
import dlangide.ui.dsourceedit;
import dlangui.widgets.editors;
import dlangide.ui.frame;
@ -111,4 +111,4 @@ private:
}
return textPos;
}
}
}

View File

@ -1,4 +1,4 @@
module dlangide.tools.d.syntaxHighlighter;
module dlangide.tools.d.simpledsyntaxhighlighter;
import dlangui.core.logger;
import dlangui.widgets.editors;
@ -637,4 +637,4 @@ class SimpleDSyntaxHighlighter : SyntaxHighlighter {
if (elapsed > 20)
Log.d("updateHighlight took ", elapsed, "ms");
}
}
}

View File

@ -7,7 +7,7 @@ import dlangui.core.types;
import dlangide.ui.frame;
import dlangide.ui.dsourceedit;
public import dlangide.tools.d.editorTool;
public import dlangide.tools.d.deditorTool;
class EditorTool
{
@ -20,4 +20,4 @@ class EditorTool
protected IDEFrame _frame;
}
}

View File

@ -13,7 +13,7 @@ import ddc.lexer.tokenizer;
import dlangide.workspace.workspace;
import dlangide.workspace.project;
import dlangide.ui.commands;
import dlangide.tools.d.syntaxHighlighter;
import dlangide.tools.d.simpledsyntaxhighlighter;
import std.algorithm;