summaryrefslogtreecommitdiff
path: root/plugins/Quotes/QuotesChart/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Quotes/QuotesChart/Program.cs')
-rw-r--r--plugins/Quotes/QuotesChart/Program.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/plugins/Quotes/QuotesChart/Program.cs b/plugins/Quotes/QuotesChart/Program.cs
deleted file mode 100644
index d2c79f5966..0000000000
--- a/plugins/Quotes/QuotesChart/Program.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-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());
- }
- }
-}