summaryrefslogtreecommitdiffstats
path: root/src/selection.h
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2015-04-29 22:29:17 +0000
committerMarc Jeanmougin <mc@M0nst3r.bouyguesbox.fr>2015-04-29 22:29:17 +0000
commitc848ff33a5f3fd7eabfe83604bb42bb5e705c0b4 (patch)
tree14d943d39ea2a0591430e731356a114de38feb5d /src/selection.h
parentuint -> unsigned int (diff)
downloadinkscape-c848ff33a5f3fd7eabfe83604bb42bb5e705c0b4.tar.gz
inkscape-c848ff33a5f3fd7eabfe83604bb42bb5e705c0b4.zip
unsigned int -> size_t
(bzr r14076)
Diffstat (limited to 'src/selection.h')
-rw-r--r--src/selection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/selection.h b/src/selection.h
index 7ac0f40f3..952dde51d 100644
--- a/src/selection.h
+++ b/src/selection.h
@@ -259,10 +259,10 @@ public:
std::list<SPBox3D *> const box3DList(Persp3D *persp = NULL);
/** Returns the number of layers in which there are selected objects. */
- unsigned int numberOfLayers();
+ size_t numberOfLayers();
/** Returns the number of parents to which the selected objects belong. */
- unsigned int numberOfParents();
+ size_t numberOfParents();
/** Returns the bounding rectangle of the selection. */
Geom::OptRect bounds(SPItem::BBoxType type) const;