diff options
| author | Shlomi Fish <shlomif@shlomifish.org> | 2016-09-15 17:14:34 +0000 |
|---|---|---|
| committer | Shlomi Fish <shlomif@shlomifish.org> | 2016-09-15 17:14:34 +0000 |
| commit | 5da31123fb7d475c7e725d75c44de7cd2e1f79b7 (patch) | |
| tree | a9e86fb6e547b39987d87f4533f8b4cf957671a0 /src/color-profile.cpp | |
| parent | Merged. (diff) | |
| download | inkscape-5da31123fb7d475c7e725d75c44de7cd2e1f79b7.tar.gz inkscape-5da31123fb7d475c7e725d75c44de7cd2e1f79b7.zip | |
Correct a typo and a sporious "== true" in a comment.
(bzr r15100.1.18)
Diffstat (limited to 'src/color-profile.cpp')
| -rw-r--r-- | src/color-profile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/color-profile.cpp b/src/color-profile.cpp index 51b1505c5..6ebf40f2c 100644 --- a/src/color-profile.cpp +++ b/src/color-profile.cpp @@ -703,7 +703,7 @@ gint Inkscape::CMSSystem::getChannelCount(ColorProfile const *profile) // sort home dir before the rest, and alphabetically oterhwise bool compareProfileBoolPair(const std::pair<Glib::ustring, bool> & a, const std::pair<Glib::ustring, bool> & b) { - if (a.second != b.second) return a.second; // a comes first iff it's home, i.e., second == true + if (a.second != b.second) return a.second; // a comes first iff its home, i.e., second is true return a.first < b.first; } |
