summaryrefslogtreecommitdiffstats
path: root/src/libavoid/shape.h
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2006-02-15 16:37:10 +0000
committerishmal <ishmal@users.sourceforge.net>2006-02-15 16:37:10 +0000
commit477b278c9e27d69268e34084a4c2d891ce1d3d92 (patch)
tree352ec0b228deb9ffc22e91e35d2a4a83f6f10476 /src/libavoid/shape.h
parentLog message for the "connectors and multiple documents" fix. (diff)
downloadinkscape-477b278c9e27d69268e34084a4c2d891ce1d3d92.tar.gz
inkscape-477b278c9e27d69268e34084a4c2d891ce1d3d92.zip
change uint to more portable unsigned int
(bzr r146)
Diffstat (limited to 'src/libavoid/shape.h')
-rw-r--r--src/libavoid/shape.h12
1 files 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<ShapeRef *> 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;