Remove an accidentally committed function.

This commit is contained in:
Mark de Wever 2010-04-25 08:56:37 +00:00
parent f503489a5f
commit b2b64014ef
2 changed files with 0 additions and 17 deletions

View file

@ -82,14 +82,6 @@ void ttext_::set_value(const std::string& text)
}
}
void ttext_::connect_signal_pre_key_press_callback(
const event::tsignal_keyboard_function& signal)
{
connect_signal<event::SDL_KEY_DOWN>(
signal
, event::tdispatcher::front_child);
}
void ttext_::set_cursor(const size_t offset, const bool select)
{
if(select) {

View file

@ -62,15 +62,6 @@ public:
const std::string& text() const { return text_.text(); }
/**
* Sets a connection handler for the keyboard.
*
* The filter will be executed before the widget itself handles the event.
*/
void connect_signal_pre_key_press_callback(
const event::tsignal_keyboard_function& signal);
/** Set the text_changed callback. */
void set_text_changed_callback(
boost::function< void (ttext_* textbox, const std::string text) > cb)