qskinny/playground/inputpanel/TextInput.cpp

18 lines
244 B
C++
Raw Normal View History

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