~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/splivarot.cpp

  • Committer: Ted Gould
  • Date: 2008-11-21 05:24:08 UTC
  • Revision ID: ted@canonical.com-20081121052408-tilucis2pjrrpzxx
MergeĀ fromĀ fe-moved

Show diffs side-by-side

added added

removed removed

Lines of Context:
1648
1648
 
1649
1649
    bool didSomething = false;
1650
1650
 
1651
 
    boost::optional<Geom::Rect> selectionBbox = selection->bounds();
 
1651
    Geom::OptRect selectionBbox = selection->bounds();
1652
1652
    if (!selectionBbox) {
1653
1653
        return false;
1654
1654
    }
1669
1669
          continue;
1670
1670
 
1671
1671
        if (simplifyIndividualPaths) {
1672
 
            boost::optional<Geom::Rect> itemBbox = item->getBounds(sp_item_i2d_affine(item));
 
1672
            Geom::OptRect itemBbox = item->getBounds(sp_item_i2d_affine(item));
1673
1673
            if (itemBbox) {
1674
1674
                simplifySize      = L2(itemBbox->dimensions());
1675
1675
            } else {