DiffEditor: Fix name for style constant

Change-Id: I8fdbcfc702574a0b61f57bb3d92594b66b2171df
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
hluk
2013-07-02 19:32:12 +02:00
committed by hjk
parent e5c394cb26
commit fe20970f12
4 changed files with 4 additions and 4 deletions

View File

@@ -45,7 +45,7 @@
<style name="JsScopeVar" foreground="#8888ff" italic="true"/>
<style name="JsImportVar" foreground="#8888ff" italic="true"/>
<style name="JsGlobalVar" foreground="#8888ff" italic="true"/>
<style name="DillFileLine" foreground="#000000" background="#d7d700"/>
<style name="DiffFileLine" foreground="#000000" background="#d7d700"/>
<style name="DiffContextLine" foreground="#000000" background="#8aaab6"/>
<style name="DiffSourceLine" background="#8c2d2d"/>
<style name="DiffSourceChar" foreground="#000000" background="#c34141"/>

View File

@@ -5,7 +5,7 @@
<style name="CurrentLine" foreground="#000000" background="#f2f2f2"/>
<style name="DiffFile"/>
<style name="DiffLocation"/>
<style name="DillFileLine" foreground="#ffffff" background="#000000"/>
<style name="DiffFileLine" foreground="#ffffff" background="#000000"/>
<style name="DiffContextLine" foreground="#ffffff" background="#7f7f7f"/>
<style name="DiffSourceLine" background="#d7d7d7"/>
<style name="DiffSourceChar" background="#afafaf"/>

View File

@@ -53,7 +53,7 @@
<style name="JsScopeVar" foreground="#8888ff" italic="true"/>
<style name="JsImportVar" foreground="#8888ff" italic="true"/>
<style name="JsGlobalVar" foreground="#8888ff" italic="true"/>
<style name="DillFileLine" foreground="#404040" background="#dcb178"/>
<style name="DiffFileLine" foreground="#404040" background="#dcb178"/>
<style name="DiffContextLine" foreground="#404040" background="#97bac7"/>
<style name="DiffSourceLine" background="#8c2d2d"/>
<style name="DiffSourceChar" background="#c34141"/>

View File

@@ -87,7 +87,7 @@ const char *nameForStyle(TextStyle style)
case C_DIFF_FILE: return "DiffFile";
case C_DIFF_LOCATION: return "DiffLocation";
case C_DIFF_FILE_LINE: return "DillFileLine";
case C_DIFF_FILE_LINE: return "DiffFileLine";
case C_DIFF_CONTEXT_LINE: return "DiffContextLine";
case C_DIFF_SOURCE_LINE: return "DiffSourceLine";
case C_DIFF_SOURCE_CHAR: return "DiffSourceChar";