diff options
Diffstat (limited to 'kig/modes/moving.cc')
-rw-r--r-- | kig/modes/moving.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kig/modes/moving.cc b/kig/modes/moving.cc index d6f2c74b..7c3148da 100644 --- a/kig/modes/moving.cc +++ b/kig/modes/moving.cc @@ -164,7 +164,7 @@ void MovingMode::moveTo( const Coordinate& o, bool snaptogrid ) { for( std::vector<ObjectCalcer*>::iterator i = d->emo.begin(); i != d->emo.end(); ++i ) { - assert( d->refmap.tqfind( *i ) != d->refmap.end() ); + assert( d->refmap.find( *i ) != d->refmap.end() ); Coordinate nc = d->refmap[*i] + ( o - d->pwwsm ); if ( snaptogrid ) nc = mdoc.document().coordinateSystem().snapToGrid( nc, mview ); (*i)->move( nc, mdoc.document() ); |