~ubuntu-branches/ubuntu/trusty/freeguide/trusty

« back to all changes in this revision

Viewing changes to src/freeguide/plugins/grabber/xmltv/XMLTVConfigureUIController.java

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Watkins
  • Date: 2008-09-07 15:49:32 UTC
  • mfrom: (1.2.6 upstream) (4.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20080907154932-2jvgv76btq068fe0
Tags: 0.10.9-1
* New upstream release. (Closes: #492789)
* Moved package from contrib to main. (Closes: #492544)
* Added lintian override for 'build-depends-without-arch-dep ant', as ant is
  used in the clean target.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package freeguide.plugins.grabber.xmltv;
2
2
 
 
3
 
3
4
import freeguide.common.lib.fgspecific.Application;
4
 
import freeguide.common.lib.general.StringHelper;
5
 
 
 
5
import freeguide.common.plugininterfaces.IApplication;
6
6
import freeguide.common.plugininterfaces.IModuleConfigurationUI;
7
7
 
8
8
import java.awt.Color;
292
292
         */
293
293
        public void actionPerformed( final ActionEvent e )
294
294
        {
295
 
            new Thread(  )
296
 
                {
297
 
                    public void run(  )
298
 
                    {
299
 
                        JButton btn = (JButton)e.getSource(  );
300
 
 
301
 
                        parent.configureChannels( moduleInfo );
302
 
 
303
 
                    }
304
 
                }.start(  );
305
 
 
 
295
            IApplication app = Application.getInstance();
 
296
            app.getExecutionController().activate( app,
 
297
                new SingleConfigCommandRunner( parent, moduleInfo.moduleName ),
 
298
                true );
306
299
        }
307
300
    }
308
301