aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2020-11-27 11:03:09 +0200
committerOrgad Shaneh <orgads@gmail.com>2020-11-27 11:09:47 +0000
commitb801fc7ae7365701980d9da3d7ffeef50a3b291c (patch)
tree3cb2aaf8826de201f2c494de32929136bf696860
parent4ac7bb5a01962318c7fdb18583f7b0cc0280a716 (diff)
BinEditor: Fix MSVC warning
warning: C4309: 'argument': truncation of constant value Change-Id: I5da62c2534474f65d5b4d1b44b995dd765d02265 Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--src/plugins/bineditor/bineditorwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/bineditor/bineditorwidget.cpp b/src/plugins/bineditor/bineditorwidget.cpp
index f0fd237792..756bad3488 100644
--- a/src/plugins/bineditor/bineditorwidget.cpp
+++ b/src/plugins/bineditor/bineditorwidget.cpp
@@ -64,7 +64,7 @@ using namespace Core;
namespace BinEditor {
namespace Internal {
-const QChar MidpointChar = QLatin1Char(0xB7);
+const QChar MidpointChar(u'\u00B7');
static QByteArray calculateHexPattern(const QByteArray &pattern)
{