From 477b278c9e27d69268e34084a4c2d891ce1d3d92 Mon Sep 17 00:00:00 2001 From: Bob Jamison Date: Wed, 15 Feb 2006 16:37:10 +0000 Subject: change uint to more portable unsigned int (bzr r146) --- src/libavoid/shape.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/libavoid') diff --git a/src/libavoid/shape.h b/src/libavoid/shape.h index 1960c2256..8989cf375 100644 --- a/src/libavoid/shape.h +++ b/src/libavoid/shape.h @@ -17,7 +17,7 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * + * */ #ifndef AVOID_SHAPE_H @@ -38,23 +38,23 @@ typedef std::list ShapeRefList; class ShapeRef { public: - ShapeRef(Router *router, uint id, Polygn& poly); + ShapeRef(Router *router, unsigned int id, Polygn& poly); ~ShapeRef(); VertInf *firstVert(void); VertInf *lastVert(void); - uint id(void); + unsigned int id(void); Polygn poly(void); Router *router(void); void boundingBox(BBox& bbox); - + void makeActive(void); void makeInactive(void); void removeFromGraph(void); - + private: Router *_router; - uint _id; + unsigned int _id; Polygn _poly; bool _active; ShapeRefList::iterator _pos; -- cgit v1.2.3