Ignore:
Timestamp:
2011-01-02T00:36:28+01:00 (14 years ago)
Author:
pieren
Message:

moved grab action to a thread

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/DownloadWMSPlanImage.java

    r21493 r24934  
    3535            try {
    3636                if (grabber.getWmsInterface().retrieveInterface(wmsLayer)) {
    37                     if (!wmsLayer.images.isEmpty()) {
     37                    if (!wmsLayer.getImages().isEmpty()) {
    3838                        //JOptionPane.showMessageDialog(Main.parent,tr("Image already loaded"));
    3939                        JOptionPane pane = new JOptionPane(
     
    5151                        // first time we grab an image for this layer
    5252                        if (CacheControl.cacheEnabled) {
    53                             if (wmsLayer.getCacheControl().loadCacheIfExist()) {
     53                            if (wmsLayer.grabThread.getCacheControl().loadCacheIfExist()) {
    5454                                dontGeoreference = true;
    5555                                Main.map.mapView.repaint();
     
    6464                            wmsLayer.grab(grabber, bounds);
    6565                            if (grabber.getWmsInterface().downloadCancelled) {
    66                                 wmsLayer.images.clear();
     66                                wmsLayer.clearImages();
    6767                                Main.map.mapView.repaint();
    6868                            } else {
Note: See TracChangeset for help on using the changeset viewer.