~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/widgets/toolbox.cpp

  • Committer: cilix42
  • Date: 2008-09-18 17:48:42 UTC
  • Revision ID: cilix42@users.sourceforge.net-20080918174842-1ad33a7d7gqhv2hq
Next roud of NR ==> Geom conversion

Show diffs side-by-side

added added

removed removed

Lines of Context:
6372
6372
    GSList *items = get_avoided_items(NULL, desktop->currentRoot(), desktop);
6373
6373
    for ( GSList const *iter = items ; iter != NULL ; iter = iter->next ) {
6374
6374
        SPItem *item = reinterpret_cast<SPItem *>(iter->data);
6375
 
        NR::Matrix m = NR::identity();
6376
 
        avoid_item_move(&m, item);
 
6375
        Geom::Matrix m = Geom::identity();
 
6376
        NR::Matrix m_NR = from_2geom(m);
 
6377
        avoid_item_move(&m_NR, item);
6377
6378
    }
6378
6379
 
6379
6380
    if (items) {