qtquick: Fix our QtQuick QLineEdit clashing with the QWidgets one

Some indirect include is making it clash. Cleaner to use a different
name anyway
This commit is contained in:
Sergio Martins
2020-11-26 21:28:01 +00:00
parent b77430e574
commit 6158ebd520
3 changed files with 12 additions and 10 deletions

View File

@@ -275,6 +275,6 @@ EmbeddedWindow::~EmbeddedWindow() = default;
MyWidget2::~MyWidget2() = default;
NonClosableWidget::~NonClosableWidget() = default;
QTextEdit::~QTextEdit() = default;
QLineEdit::~QLineEdit() = default;
FocusableWidget::~FocusableWidget() = default;
QPushButton::~QPushButton() = default;
#endif