@@ -76,11 +76,8 @@ public class PluginMain : IPlugin
76
76
private ProjectActions projectActions ;
77
77
private FlashDevelopActions flashDevelopActions ;
78
78
private Queue < String > openFileQueue ;
79
- private Boolean showProjectClasspaths ;
80
- private Boolean showGlobalClasspaths ;
81
79
private DockContent pluginPanel ;
82
80
private PluginUI pluginUI ;
83
- private Image pluginImage ;
84
81
private Project activeProject ;
85
82
private OpenResourceForm projectResources ;
86
83
private Boolean runOutput ;
@@ -102,7 +99,6 @@ public class PluginMain : IPlugin
102
99
103
100
static string SettingsDir { get { return Path . Combine ( PathHelper . DataDir , pluginName ) ; } }
104
101
static string SettingsPath { get { return Path . Combine ( SettingsDir , "Settings.fdb" ) ; } }
105
- static string FDBuildHints { get { return Path . Combine ( SettingsDir , "FDBuildHints.txt" ) ; } }
106
102
107
103
public void LoadSettings ( )
108
104
{
@@ -170,16 +166,12 @@ public void SaveSettings()
170
166
public void Initialize ( )
171
167
{
172
168
LoadSettings ( ) ;
173
- pluginImage = MainForm . FindImage ( "100" ) ;
174
169
pluginDesc = TextHelper . GetString ( "Info.Description" ) ;
175
170
openFileQueue = new Queue < String > ( ) ;
176
171
177
172
Icons . Initialize ( MainForm ) ;
178
173
EventManager . AddEventHandler ( this , eventMask ) ;
179
174
180
- showProjectClasspaths = Settings . ShowProjectClasspaths ;
181
- showGlobalClasspaths = Settings . ShowGlobalClasspaths ;
182
-
183
175
#region Actions and Event Listeners
184
176
185
177
menus = new FDMenus ( MainForm ) ;
0 commit comments