summaryrefslogtreecommitdiffstats
path: root/src/selection.cpp
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2015-04-29 21:30:20 +0000
committerMarc Jeanmougin <mc@M0nst3r.bouyguesbox.fr>2015-04-29 21:30:20 +0000
commit7aac87804be5fe99db56130848d94da4d07e2382 (patch)
tree48d4a42e9616b5e6f4eefb993b8c2c2a7433451f /src/selection.cpp
parentbzr merge lp:~mc.../inkscape/SelContainer (diff)
downloadinkscape-7aac87804be5fe99db56130848d94da4d07e2382.tar.gz
inkscape-7aac87804be5fe99db56130848d94da4d07e2382.zip
uint -> unsigned int
(bzr r14075)
Diffstat (limited to 'src/selection.cpp')
-rw-r--r--src/selection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selection.cpp b/src/selection.cpp
index b2fb6447e..017089ec5 100644
--- a/src/selection.cpp
+++ b/src/selection.cpp
@@ -513,7 +513,7 @@ SPObject *Selection::_objectForXMLNode(Inkscape::XML::Node *repr) const {
return object;
}
-uint Selection::numberOfLayers() {
+unsigned int Selection::numberOfLayers() {
std::vector<SPItem*> const items = const_cast<Selection *>(this)->itemList();
std::set<SPObject*> layers;
for ( std::vector<SPItem*>::const_iterator iter=items.begin();iter!=items.end();iter++ ) {