diff options
author | André Nusser <andre.nusser@googlemail.com> | 2017-05-05 22:35:47 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2017-05-05 22:35:47 +0200 |
commit | 72e6e0401677740a286ab937194c61db1448e4c9 (patch) | |
tree | c39de5f7b2fbfbcf02bb4c9c514fefde4cd2a07b /plugingui/lineedit.cc | |
parent | 33639dddd8b1b01739994b7427d70ffc676cb22d (diff) |
Refactor TextEdit widget.
Diffstat (limited to 'plugingui/lineedit.cc')
-rw-r--r-- | plugingui/lineedit.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/lineedit.cc b/plugingui/lineedit.cc index d2e9dea..96bf56f 100644 --- a/plugingui/lineedit.cc +++ b/plugingui/lineedit.cc @@ -65,7 +65,7 @@ void LineEdit::setText(const std::string& text) textChanged(); } -std::string LineEdit::text() +std::string LineEdit::getText() { return _text; } |