File tree Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -198,8 +198,8 @@ void GItemView::mousemove_event(GMouseEvent& event)
198
198
selection ().add (model ()->index (item_index, model_column ()));
199
199
}
200
200
if (event.modifiers () & Mod_Ctrl) {
201
- for (auto storeditem : m_rubber_band_remembered_selection) {
202
- selection ().add (storeditem );
201
+ for (auto stored_item : m_rubber_band_remembered_selection) {
202
+ selection ().add (stored_item );
203
203
}
204
204
}
205
205
update ();
Original file line number Diff line number Diff line change @@ -90,7 +90,6 @@ class GTextEditor
90
90
// FIXME: This should take glyph spacing into account, no?
91
91
int glyph_width () const { return font ().glyph_width (' x' ); }
92
92
93
-
94
93
void insert_at_cursor_or_replace_selection (const StringView&);
95
94
bool write_to_file (const StringView& path);
96
95
bool has_selection () const { return m_selection.is_valid (); }
Original file line number Diff line number Diff line change @@ -435,7 +435,6 @@ void GTreeView::keydown_event(GKeyEvent& event)
435
435
return ;
436
436
}
437
437
}
438
-
439
438
}
440
439
441
440
int GTreeView::item_count () const
You can’t perform that action at this time.
0 commit comments