summaryrefslogtreecommitdiff
path: root/plugins/Quotes/QuotesChart/Program.cs
diff options
context:
space:
mode:
authorDioksin <dioksin@ua.fm>2016-10-28 10:26:18 +0300
committerDioksin <dioksin@ua.fm>2016-10-28 10:26:18 +0300
commit90f21502c21e0cff38ee961b1bc7c4d96edba461 (patch)
treeeeb316a387de62aff88757bf209a3dee848b79c7 /plugins/Quotes/QuotesChart/Program.cs
parentfc47883d5726ae724d764a8600fbfd56c79893e0 (diff)
Chart was added to Quotes plugin
Diffstat (limited to 'plugins/Quotes/QuotesChart/Program.cs')
-rw-r--r--plugins/Quotes/QuotesChart/Program.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/plugins/Quotes/QuotesChart/Program.cs b/plugins/Quotes/QuotesChart/Program.cs
new file mode 100644
index 0000000000..d2c79f5966
--- /dev/null
+++ b/plugins/Quotes/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());
+ }
+ }
+}