2018-03-14 16:30:29 +00:00
|
|
|
#include "TextInput.h"
|
|
|
|
|
|
|
|
TextInput::TextInput( QQuickItem* parent )
|
|
|
|
: QQuickTextInput( parent )
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
TextInput::~TextInput()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2018-03-14 16:30:39 +00:00
|
|
|
|
|
|
|
void TextInput::inputMethodEvent(QInputMethodEvent *event)
|
|
|
|
{
|
|
|
|
QQuickTextInput::inputMethodEvent(event);
|
|
|
|
}
|