diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-03-18 18:18:57 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-03-18 18:18:57 +0100 |
commit | 57f4d38841c40cad3c206abdd16eebaed753aa1c (patch) | |
tree | c7e5a40b457845b2fb296563add9599d2e81384e /src/itemeditor.cc | |
parent | 9364b9bb84f607d8603f60b86f965b77e03d8c70 (diff) |
Update all fiels to adhere to style-guide
Diffstat (limited to 'src/itemeditor.cc')
-rw-r--r-- | src/itemeditor.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/itemeditor.cc b/src/itemeditor.cc index 1925048..4dd93f5 100644 --- a/src/itemeditor.cc +++ b/src/itemeditor.cc @@ -26,15 +26,15 @@ */ #include "itemeditor.h" -ItemEditor::ItemEditor(QListWidgetItem *i, QString v) +ItemEditor::ItemEditor(QListWidgetItem* i, QString v) { - this->i = i; - setText(v); - show(); + this->i = i; + setText(v); + show(); } -void ItemEditor::focusOutEvent(QFocusEvent *) +void ItemEditor::focusOutEvent(QFocusEvent*) { - emit updateItem(i, text()); - close(); + emit updateItem(i, text()); + close(); } |