Revision 41676 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.mapcontext/org.gvsig.fmap.mapcontext.api/src/main/java/org/gvsig/fmap/mapcontext/layers/vectorial/FLyrVect.java

View differences:

FLyrVect.java
777 777
        double scale,
778 778
        double dpi) throws ReadException {
779 779
        if (strategy != null && isWithinScale(scale)) {
780
            strategy.draw(image, g, viewPort, cancel, dpi);
780
            strategy.draw(image, g, scale, viewPort, cancel, dpi);
781 781
        }
782 782
    }
783 783

  
......
787 787
        double scale,
788 788
        PrintAttributes properties) throws ReadException {
789 789
        if (strategy != null) {
790
            strategy.print(g, viewPort, cancel, properties);
790
            strategy.print(g, scale, viewPort, cancel, properties);
791 791
        }
792 792
    }
793 793

  
......
917 917
            featureQuery.setAttributeNames(names);
918 918
            featureQuery.setFeatureTypeId(featureType.getId());
919 919
        }
920
        String geomName = featureStore.getDefaultFeatureType()
920
        String geomName = featureStore.getDefaultFeatureType()

921 921
                .getDefaultGeometryAttributeName();
922 922
        
923 923
        Envelope query_env = fromViewPortCRSToSourceCRS(this, envelope);

Also available in: Unified diff