- Corrected TextView -> Entry

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@282 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
tchernobog 2006-02-01 22:56:29 +00:00
parent fc8d5cb258
commit e008b0d4db
1 changed files with 2 additions and 1 deletions

View File

@ -25,6 +25,7 @@
#include "gettext.h" #include "gettext.h"
#include <gtkmm/box.h> #include <gtkmm/box.h>
#include <gtkmm/entry.h>
#include <gtkmm/textview.h> #include <gtkmm/textview.h>
#include <glibmm/ustring.h> #include <glibmm/ustring.h>
@ -49,7 +50,7 @@ public:
virtual size_type read_command(Glib::ustring& buffer) const; virtual size_type read_command(Glib::ustring& buffer) const;
private: private:
Gtk::TextView text_output; Gtk::TextView text_output;
Gtk::TextView text_input; Gtk::Entry text_input;
}; };
#endif #endif