]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/entry.cpp
Simplify constructors with C++11
[libs/gltk.git] / source / entry.cpp
index 7ee7a32cdd9e6f8cecb77a2297e55b61fa0a5a07..19bbaf9dc693f685a875ef962dcb03ac3a42340c 100644 (file)
@@ -13,20 +13,7 @@ using namespace std;
 namespace Msp {
 namespace GLtk {
 
-Entry::Entry(const string &t):
-       text(),
-       multiline(false),
-       edit_width(10),
-       edit_height(1),
-       edit_pos(0),
-       first_row(0),
-       visible_rows(1),
-       text_part(0),
-       slider(0),
-       got_key_press(false),
-       cursor_blink(true),
-       selection_active(false),
-       selection_pos(0)
+Entry::Entry(const string &t)
 {
        input_type = INPUT_TEXT;
        set_text(t);