Appease some CppCheck warns for files in the "scene" directory
This commit is contained in:
@ -1290,13 +1290,11 @@ int LineEdit::get_max_length() const {
|
||||
|
||||
void LineEdit::selection_fill_at_cursor() {
|
||||
|
||||
int aux;
|
||||
|
||||
selection.begin = cursor_pos;
|
||||
selection.end = selection.cursor_start;
|
||||
|
||||
if (selection.end < selection.begin) {
|
||||
aux = selection.end;
|
||||
int aux = selection.end;
|
||||
selection.end = selection.begin;
|
||||
selection.begin = aux;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user