File tree Expand file tree Collapse file tree 4 files changed +4
-2
lines changed
Distros/HaxeDevelop/PluginCore/PluginCore Expand file tree Collapse file tree 4 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ public class DistroConfig
13
13
public const String DISTRIBUTION_COPYRIGHT = "HaxeDevelop.org 2015-2016" ;
14
14
public const String DISTRIBUTION_COMPANY = "HaxeDevelop.org" ;
15
15
public const String DISTRIBUTION_RSS = "http://www.haxedevelop.org/rss.xml" ;
16
+ public const String DISTRIBUTION_EXT = "hx" ;
16
17
}
17
18
18
19
}
Original file line number Diff line number Diff line change @@ -286,7 +286,7 @@ public Int32 ScrollWidth
286
286
set { this . scrollWidth = value ; }
287
287
}
288
288
289
- [ DefaultValue ( "as" ) ]
289
+ [ DefaultValue ( DistroConfig . DISTRIBUTION_EXT ) ]
290
290
[ DisplayName ( "Default File Extension" ) ]
291
291
[ LocalizedCategory ( "FlashDevelop.Category.Editor" ) ]
292
292
[ LocalizedDescription ( "FlashDevelop.Description.DefaultFileExtension" ) ]
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ public partial class SettingObject : ISettings
40
40
private List < String > previousDocuments = new List < String > ( ) ;
41
41
private List < String > disabledPlugins = new List < String > ( ) ;
42
42
private String latestDialogPath = Application . StartupPath ;
43
- private String defaultFileExtension = "as" ;
43
+ private String defaultFileExtension = DistroConfig . DISTRIBUTION_EXT ;
44
44
private Boolean confirmOnExit = false ;
45
45
private Boolean keepIndentTabs = false ;
46
46
private Boolean disableFindOptionSync = false ;
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ public class DistroConfig
13
13
public const String DISTRIBUTION_COPYRIGHT = "FlashDevelop.org 2005-2016" ;
14
14
public const String DISTRIBUTION_COMPANY = "FlashDevelop.org" ;
15
15
public const String DISTRIBUTION_RSS = "http://www.flashdevelop.org/community/rss.php?f=15" ;
16
+ public const String DISTRIBUTION_EXT = "as" ;
16
17
}
17
18
18
19
}
You can’t perform that action at this time.
0 commit comments