From b640caa2fd36b9e230f3c0b0892ef181263d80d0 Mon Sep 17 00:00:00 2001 From: ishmal Date: Wed, 15 Feb 2006 16:37:10 +0000 Subject: [PATCH] change uint to more portable unsigned int --- src/libavoid/shape.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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; -- 2.30.2