diff options
| author | Jabiertxof <jabier.arraiza@marker.es> | 2019-07-26 15:49:11 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2019-08-02 21:26:28 +0000 |
| commit | 1f7f5bd7e468964fd9790a20934de83b71d4b83f (patch) | |
| tree | b951672e93e6df5711c6fddeca778365b013ef86 /src/ui/widget | |
| parent | Add font size units and Adam UX sugestion (diff) | |
| download | inkscape-1f7f5bd7e468964fd9790a20934de83b71d4b83f.tar.gz inkscape-1f7f5bd7e468964fd9790a20934de83b71d4b83f.zip | |
Fix coding style
Diffstat (limited to 'src/ui/widget')
| -rw-r--r-- | src/ui/widget/unit-tracker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/widget/unit-tracker.cpp b/src/ui/widget/unit-tracker.cpp index b0d2e890b..c917d7bae 100644 --- a/src/ui/widget/unit-tracker.cpp +++ b/src/ui/widget/unit-tracker.cpp @@ -89,9 +89,9 @@ void UnitTracker::changeLabel(Glib::ustring new_label, gint pos) { ComboToolItemColumns columns; int index = 0; - for (auto& row: _store->children() ) { + for (auto &row : _store->children()) { if (index == pos) { - row[columns.col_label ] = new_label; + row[columns.col_label] = new_label; } index++; } |
