-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
None
-
5.4.1
-
None
Qt 5.4.1
Android 4.3 (also 4.4)
QMimeData return true for hasText() but retrieved text via text() is empty.
const QMimeData *mime = QApplication::clipboard()->mimeData();
if (mime->hasText())
{
QString textStr = mime->text();
if (textStr.isEmpty())
{
qDebug() << "empty text";
}
}