~ubuntu-branches/ubuntu/vivid/freeguide/vivid

« back to all changes in this revision

Viewing changes to src/freeguide/plugins/program/freeguide/lib/fgspecific/GrabberController.java.rej

  • 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
 
***************
2
 
*** 18,24 ****
3
 
  import java.util.logging.Level;
4
 
  
5
 
  import javax.swing.JButton;
6
 
- import javax.swing.JButton;
7
 
  import javax.swing.JDialog;
8
 
  import javax.swing.JFrame;
9
 
  import javax.swing.JProgressBar;
10
 
--- 18,23 ----
11
 
  import java.util.logging.Level;
12
 
  
13
 
  import javax.swing.JButton;
14
 
  import javax.swing.JDialog;
15
 
  import javax.swing.JFrame;
16
 
  import javax.swing.JProgressBar;
17
 
***************
18
 
*** 251,257 ****
19
 
                          Application.getInstance(  )
20
 
                                     .getLocalizedMessage( 
21
 
                              "ExecutionDialog.Finish.Error" ) );
22
 
-                     progressDialog.showDetails(  );
23
 
                  }
24
 
              }
25
 
          }
26
 
--- 250,265 ----
27
 
                          Application.getInstance(  )
28
 
                                     .getLocalizedMessage( 
29
 
                              "ExecutionDialog.Finish.Error" ) );
30
 
31
 
+                     new Thread(  )
32
 
+                         {
33
 
+                             public void run(  )
34
 
+                             {
35
 
+                                 progressDialog.bringToForeground(  );
36
 
+                                 progressDialog.showDetails(  );
37
 
+                                 progressDialog.disableBackgroundButton(  );
38
 
+                             }
39
 
+                         }.start(  );
40
 
                  }
41
 
              }
42
 
          }