18 lines
244 B
C++
18 lines
244 B
C++
#include "TextInput.h"
|
|
|
|
TextInput::TextInput( QQuickItem* parent )
|
|
: QQuickTextInput( parent )
|
|
{
|
|
|
|
}
|
|
|
|
TextInput::~TextInput()
|
|
{
|
|
|
|
}
|
|
|
|
void TextInput::inputMethodEvent(QInputMethodEvent *event)
|
|
{
|
|
QQuickTextInput::inputMethodEvent(event);
|
|
}
|