|
From: Alan E. <ala...@gm...> - 2008-08-13 03:21:29
|
Thanks for the tip! It didn't work for me, however. Did it work for you, Lin? Maybe there is something else wrong with my setup...? Any other ideas? On Tue, Aug 12, 2008 at 4:09 PM, Eric Berry <el...@gm...> wrote: > Hey guys, > I ran into the same issue running jEdit from source on my work XP > machine. The fix is pretty simple. > > I changed the services.xml file to import the statusbar package instead of > using the full classname. > > Eg: > <SERVICE CLASS="org.gjt.sp.jedit.gui.statusbar.StatusWidget" > NAME="mode"> > import org.gjt.sp.jedit.gui.statusbar.*; > new ModeWidgetFactory(); > </SERVICE> > > instead of: > > <SERVICE CLASS="org.gjt.sp.jedit.gui.statusbar.StatusWidget" > NAME="mode"> > new org.gjt.sp.jedit.gui.statusbar.ModeWidgetFactory(); > </SERVICE> > > This gets rid of the error for me. > > Here's a diff of services.xml with these changes. > > Alan, should I submit this to the tracker as well? > > |