diff options
author | Kirill Volinsky <Mataes2007@gmail.com> | 2018-07-25 09:14:43 +0300 |
---|---|---|
committer | Kirill Volinsky <Mataes2007@gmail.com> | 2018-07-25 09:14:43 +0300 |
commit | 23729c4f6a62de7a71368ffdeeeb08470ff4731e (patch) | |
tree | 3b227636ac19cb7b1f200b52aec1121593713e4d /plugins/CurrencyRates/QuotesChart/Program.cs | |
parent | e62d2a2a86b0477537403a2316e629e8fea4a9d0 (diff) |
Quotes renamed to CurrencyRates
Diffstat (limited to 'plugins/CurrencyRates/QuotesChart/Program.cs')
-rw-r--r-- | plugins/CurrencyRates/QuotesChart/Program.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/plugins/CurrencyRates/QuotesChart/Program.cs b/plugins/CurrencyRates/QuotesChart/Program.cs new file mode 100644 index 0000000000..d2c79f5966 --- /dev/null +++ b/plugins/CurrencyRates/QuotesChart/Program.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace QuotesChart +{ + static class Program + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main(string[] args) + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new FormMirandaQuotesChart()); + } + } +} |