瀏覽代碼

Constify name.

Stephen Damm 6 年之前
父節點
當前提交
e2b9d9b1ea
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      SongBrowserPlugin/Plugin.cs

+ 2 - 2
SongBrowserPlugin/Plugin.cs

@@ -6,7 +6,7 @@ namespace SongBrowserPlugin
 {
     public class Plugin : IPlugin
     {
-        public const string VersionNumber = "v2.3.3";
+        public const string VERSION_NUMBER = "v2.3.3";
 
         public string Name
         {
@@ -15,7 +15,7 @@ namespace SongBrowserPlugin
 
         public string Version
         {
-            get { return VersionNumber; }
+            get { return VERSION_NUMBER; }
         }
 
         public void OnApplicationStart()