diff options
| author | Felipe CorrĂȘa da Silva Sanches <juca@members.fsf.org> | 2018-03-27 19:45:22 +0000 |
|---|---|---|
| committer | Felipe CorrĂȘa da Silva Sanches <juca@members.fsf.org> | 2018-03-27 19:46:35 +0000 |
| commit | 5e6745da63bc715ca8e52ad859971ac669226951 (patch) | |
| tree | 589ff8f175d0689cfae7c7cc29a8698a68a62587 /src/selcue.cpp | |
| parent | move FTFixedToDouble / FTDoubleToFixed to a common header (diff) | |
| download | inkscape-5e6745da63bc715ca8e52ad859971ac669226951.tar.gz inkscape-5e6745da63bc715ca8e52ad859971ac669226951.zip | |
Minor cleanup of warnings. No functional change.
Diffstat (limited to 'src/selcue.cpp')
| -rw-r--r-- | src/selcue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selcue.cpp b/src/selcue.cpp index b97b8ba26..8ef3aa03a 100644 --- a/src/selcue.cpp +++ b/src/selcue.cpp @@ -97,7 +97,7 @@ void Inkscape::SelCue::_updateItemBboxes(Inkscape::Preferences *prefs) void Inkscape::SelCue::_updateItemBboxes(gint mode, int prefs_bbox) { auto items = _selection->items(); - if (_item_bboxes.size() != boost::distance(items)) { + if (_item_bboxes.size() != (unsigned int) boost::distance(items)) { _newItemBboxes(); return; } |
