Skip to content

Commit fbffb38

Browse files
committed
Fix regression in formatters
1 parent 256bc4c commit fbffb38

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/qml/value-editor/editors/formatters/formatters.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ var hex = {
2525
title: "HEX",
2626

2727
getFormatted: function (raw, callback) {
28-
return callback("", binaryUtils.printable(raw), false, FORMAT_PLAIN_TEXT)
28+
return callback("", qmlUtils.printable(raw), false, FORMAT_PLAIN_TEXT)
2929
},
3030

3131
getRaw: function (formatted, callback) {
32-
return callback("", binaryUtils.printableToValue(formatted))
32+
return callback("", qmlUtils.printableToValue(formatted))
3333
}
3434
}
3535

3636
var hexTable = {
3737
title: "HEX TABLE",
3838

3939
getFormatted: function (raw, callback) {
40-
return callback("", Hexy.hexy(binaryUtils.valueToBinary(raw), {'html': true}), true, FORMAT_HTML)
40+
return callback("", Hexy.hexy(qmlUtils.valueToBinary(raw), {'html': true}), true, FORMAT_HTML)
4141
},
4242
}
4343

0 commit comments

Comments
 (0)