Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23624
Modified Files:
uobject.cpp
Log Message:
Fix: tags not being copied when you move pileable objects in/out of piles.
Index: uobject.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/uobject.cpp,v
retrieving revision 1.124
retrieving revision 1.125
diff -C2 -d -r1.124 -r1.125
*** uobject.cpp 25 Jan 2004 20:24:26 -0000 1.124
--- uobject.cpp 26 Jan 2004 00:45:10 -0000 1.125
***************
*** 80,84 ****
this->free = src.free;
this->changed( TOOLTIP );
! tooltip_ = src.tooltip_;
changed_ = true;
}
--- 80,85 ----
this->free = src.free;
this->changed( TOOLTIP );
! this->tooltip_ = src.tooltip_;
! this->tags_ = src.tags_;
changed_ = true;
}
|