From 9b9c35fd8a337cfa252c11555820e67f077466b4 Mon Sep 17 00:00:00 2001 From: Nikita Baryshnikov Date: Mon, 6 Apr 2015 18:51:22 +0300 Subject: [PATCH] BinEditor: metion that bug in QByteArray::toLower was fixed in Qt5.4. Could be fixed once we will drop Qt5.3 Change-Id: I7a121e07dcfd2cfd2749cfcd9a02dd178d733361 Reviewed-by: Orgad Shaneh --- src/plugins/bineditor/bineditor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/bineditor/bineditor.cpp b/src/plugins/bineditor/bineditor.cpp index d39995eaac7..2408423fb64 100644 --- a/src/plugins/bineditor/bineditor.cpp +++ b/src/plugins/bineditor/bineditor.cpp @@ -57,6 +57,7 @@ #include // QByteArray::toLower() is broken, it stops at the first \0 +// FIXME: fixed in Qt5.4 5d11688d02e1f56722dce809cbe7ab5c49fea590 static void lower(QByteArray &ba) { char *data = ba.data();