From e008b0d4dbd1406f0d754941fd6f3d9e3699b321 Mon Sep 17 00:00:00 2001 From: tchernobog Date: Wed, 1 Feb 2006 22:56:29 +0000 Subject: [PATCH] - Corrected TextView -> Entry git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@282 3ecf2c5c-341e-0410-92b4-d18e462d057c --- src/graphicalterminalio.hh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/graphicalterminalio.hh b/src/graphicalterminalio.hh index 9e63008..d3fe8a2 100644 --- a/src/graphicalterminalio.hh +++ b/src/graphicalterminalio.hh @@ -25,6 +25,7 @@ #include "gettext.h" #include +#include #include #include @@ -49,7 +50,7 @@ public: virtual size_type read_command(Glib::ustring& buffer) const; private: Gtk::TextView text_output; - Gtk::TextView text_input; + Gtk::Entry text_input; }; #endif