]> sigrok.org Git - pulseview.git/blobdiff - pv/prop/string.cpp
Added code to handle different integer types in the Int property.
[pulseview.git] / pv / prop / string.cpp
index b8f3351cf8fb2acbc160a7bcd41bfb529443ddd3..4921129e9242bdb61c22e1c9ddb5aedfed958091 100644 (file)
@@ -20,6 +20,7 @@
 
 #include <assert.h>
 
+#include <QLineEdit>
 #include <QSpinBox>
 
 #include "string.h"
@@ -47,7 +48,7 @@ QWidget* String::get_widget(QWidget *parent, bool auto_commit)
 
        GVariant *const value = _getter ? _getter() : NULL;
        if (value) {
-               _line_edit->setText(QString(
+               _line_edit->setText(QString::fromUtf8(
                        g_variant_get_string(value, NULL)));
                g_variant_unref(value);
        }