ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/java/installer2/src/net/oni2/aeinstaller/gui/MainWin.java
(Generate patch)

Comparing java/installer2/src/net/oni2/aeinstaller/gui/MainWin.java (file contents):
Revision 892 by alloc, Mon Jun 24 23:35:55 2013 UTC vs.
Revision 1018 by alloc, Sat Mar 28 18:11:52 2015 UTC

# Line 374 | Line 374 | public class MainWin extends JFrame impl
374          @SuppressWarnings("unused")
375          private void doUpdate() {
376                  if (execUpdates != null && execUpdates.size() > 0) {
377 <                        Downloader dl = new Downloader(execUpdates, null, false);
377 >                        Downloader dl = new Downloader(execUpdates, null, false, this);
378                          try {
379                                  dl.setVisible(true);
380                                  if (dl.isFinished()) {
# Line 698 | Line 698 | public class MainWin extends JFrame impl
698                                  }
699                          }
700                          if (execCoreUpdates.size() > 0) {
701 <                                Downloader dl = new Downloader(execCoreUpdates, null, true);
701 >                                Downloader dl = new Downloader(execCoreUpdates, null, true, this);
702                                  try {
703                                          dl.setVisible(true);
704                                  } finally {
# Line 754 | Line 754 | public class MainWin extends JFrame impl
754                          }
755  
756                          if (toDownload.size() > 0) {
757 <                                Downloader dl = new Downloader(toDownload, installDeps, false);
757 >                                Downloader dl = new Downloader(toDownload, installDeps, false, this);
758                                  try {
759                                          dl.setVisible(true);
760                                          if (!dl.isFinished()) {

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)