~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/sp-item-group.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:
701
701
 
702
702
void CGroup::calculateBBox(NRRect *bbox, Geom::Matrix const &transform, unsigned const flags) {
703
703
 
704
 
    boost::optional<Geom::Rect> dummy_bbox;
 
704
    Geom::OptRect dummy_bbox;
705
705
 
706
706
    GSList *l = _group->childList(false, SPObject::ActionBBox);
707
707
    while (l) {
836
836
        for (PathEffectList::iterator it = lpeitem->path_effect_list->begin(); it != lpeitem->path_effect_list->end(); it++)
837
837
        {
838
838
            LivePathEffectObject *lpeobj = (*it)->lpeobject;
839
 
            if (lpeobj->get_lpe()) {
 
839
            if (lpeobj && lpeobj->get_lpe()) {
840
840
                lpeobj->get_lpe()->doBeforeEffect(lpeitem);
841
841
            }
842
842
        }