qskinny/playground/inputpanel/TextInput.cpp
2018-03-27 16:37:32 +02:00

18 lines
244 B
C++

#include "TextInput.h"
TextInput::TextInput( QQuickItem* parent )
: QQuickTextInput( parent )
{
}
TextInput::~TextInput()
{
}
void TextInput::inputMethodEvent(QInputMethodEvent *event)
{
QQuickTextInput::inputMethodEvent(event);
}