File tree 8 files changed +15
-15
lines changed
8 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ public static class Constants {
9
9
public const String STRING_ESCAPE_CLASSIF_NAME = "String Escape Sequence" ;
10
10
public const String LINE_HIGHLIGHT = "Current Line" ;
11
11
12
- public const string CT_XML = "XML" ;
13
- public const string CT_XAML = "XAML" ;
14
- public const string CT_HTML = "HTML" ;
15
- public const string XML_CLOSING = "XMLCloseTag" ;
16
- public const string XML_PREFIX = "XMLPrefix" ;
12
+ public const String CT_XML = "XML" ;
13
+ public const String CT_XAML = "XAML" ;
14
+ public const String CT_HTML = "HTML" ;
15
+ public const String XML_CLOSING = "XMLCloseTag" ;
16
+ public const String XML_PREFIX = "XMLPrefix" ;
17
17
// I'd prefer "XML Delimiter" here, but no way to
18
18
// use it effectively.
19
- public const string DELIMITER = PredefinedClassificationTypeNames . Operator ;
19
+ public const String DELIMITER = PredefinedClassificationTypeNames . Operator ;
20
20
}
21
21
}
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ protected override String[] LinqDefaults {
27
27
protected override String [ ] VisibilityDefaults {
28
28
get { return CS_VIS_KEYWORDS ; }
29
29
}
30
- protected override string KeyName {
30
+ protected override String KeyName {
31
31
get { return "CSharp" ; }
32
32
}
33
33
}
Original file line number Diff line number Diff line change 6
6
7
7
namespace Winterdom . Viasfora . Text {
8
8
static class ConfigHelp {
9
- private static string REG_KEY =
9
+ private static String REG_KEY =
10
10
"Software\\ Winterdom\\ Viasfora" ;
11
11
public static String GetValue ( String name , String defValue ) {
12
12
using ( RegistryKey key = Registry . CurrentUser . CreateSubKey ( REG_KEY ) ) {
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ protected override String[] LinqDefaults {
22
22
protected override String [ ] VisibilityDefaults {
23
23
get { return CPP_VIS_KEYWORDS ; }
24
24
}
25
- protected override string KeyName {
25
+ protected override String KeyName {
26
26
get { return "Cpp" ; }
27
27
}
28
28
}
Original file line number Diff line number Diff line change 14
14
15
15
namespace Winterdom . Viasfora . Text {
16
16
public class CurrentLineAdornment {
17
- public const string CUR_LINE_TAG = "currentLine" ;
17
+ public const String CUR_LINE_TAG = "currentLine" ;
18
18
private IAdornmentLayer layer ;
19
19
private IWpfTextView view ;
20
20
private IClassificationFormatMap formatMap ;
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ protected override String[] LinqDefaults {
24
24
protected override String [ ] VisibilityDefaults {
25
25
get { return new String [ 0 ] ; }
26
26
}
27
- protected override string KeyName {
27
+ protected override String KeyName {
28
28
get { return "JScript" ; }
29
29
}
30
30
}
Original file line number Diff line number Diff line change 5
5
6
6
namespace Winterdom . Viasfora . Text {
7
7
abstract class LanguageKeywords {
8
- private Dictionary < string , string [ ] > keywords =
9
- new Dictionary < string , string [ ] > ( ) ;
8
+ private Dictionary < String , String [ ] > keywords =
9
+ new Dictionary < String , String [ ] > ( ) ;
10
10
11
11
public String [ ] ControlFlow {
12
12
get { return Get ( "ControlFlow" , ControlFlowDefaults ) ; }
Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ public void AugmentQuickInfoSession(
40
40
TextExtent extent = FindExtentAtPoint ( subjectTriggerPoint ) ;
41
41
42
42
if ( CheckForPrefixTag ( tagAggregator , extent . Span ) ) {
43
- string text = extent . Span . GetText ( ) ;
44
- string url = FindNSUri ( extent . Span , GetDocText ( extent . Span ) ) ;
43
+ String text = extent . Span . GetText ( ) ;
44
+ String url = FindNSUri ( extent . Span , GetDocText ( extent . Span ) ) ;
45
45
applicableToSpan = currentSnapshot . CreateTrackingSpan (
46
46
extent . Span , SpanTrackingMode . EdgeInclusive
47
47
) ;
You can’t perform that action at this time.
0 commit comments