~ubuntu-branches/ubuntu/utopic/sweethome3d/utopic

« back to all changes in this revision

Viewing changes to src/com/eteks/sweethome3d/applet/AppletApplication.java

  • Committer: Package Import Robot
  • Author(s): Gabriele Giacone
  • Date: 2012-09-18 13:36:44 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20120918133644-smm7jyifj8ywj3rd
Tags: 3.6+dfsg-1
* New upstream release (Closes: #687996).
* B-D on default-jdk, runtime on default-jre (Closes: #684298).
* Remove gamma correction from icons (Closes: #687823).
* Fix binary xz compression.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
import java.security.AccessControlException;
34
34
import java.util.ArrayList;
35
35
import java.util.List;
 
36
import java.util.concurrent.Executor;
36
37
 
37
38
import javax.jnlp.BasicService;
38
39
import javax.jnlp.ServiceManager;
559
560
          getURLs(codeBase, texturesCatalogURLs),
560
561
          getURLWithCodeBase(codeBase, texturesResourcesUrlBase), 
561
562
          getURLWithCodeBase(codeBase, writePreferencesURL), 
562
 
          getURLWithCodeBase(codeBase, readPreferencesURL),
 
563
          getURLWithCodeBase(codeBase, readPreferencesURL), 
 
564
          new Executor() {
 
565
              public void execute(Runnable command) {
 
566
                EventQueue.invokeLater(command);
 
567
              }
 
568
            },
563
569
          userLanguage);
564
570
    }
565
571
    return this.userPreferences;