summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBenjamin Saunders <ben.e.saunders@gmail.com>2017-11-05 14:25:47 -0800
committermujx <mujx@users.noreply.github.com>2017-11-06 00:25:47 +0200
commitd0d15f8f58b6bd62aa306d8983f94d469108a7cf (patch)
treef25bb715c76112343eb614508666c078dfa03495 /src
parentf4b310467e1c34e42088925db963896442e99c95 (diff)
Fix a formatting issue that snuck in between PRs (#123)
Diffstat (limited to 'src')
-rw-r--r--src/TextInputWidget.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TextInputWidget.cc b/src/TextInputWidget.cc
index e7c48b5f..ad053ea3 100644
--- a/src/TextInputWidget.cc
+++ b/src/TextInputWidget.cc
@@ -29,8 +29,8 @@
static constexpr size_t INPUT_HISTORY_SIZE = 127;
FilteredTextEdit::FilteredTextEdit(QWidget *parent)
- : QTextEdit{ parent }
- , history_index_{ 0 }
+ : QTextEdit{parent}
+ , history_index_{0}
{
connect(document()->documentLayout(),
&QAbstractTextDocumentLayout::documentSizeChanged,