X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fprop%2Fbinding%2Fdecoderoptions.cpp;h=8738300ee9550007486c2b81f2fee1749f0293c5;hb=19adbc2c342b190161ec1223377a3619974b91f7;hp=361d85b2bbbbec202638b28b67675ce4d7fff934;hpb=615f6d25e4144ca6db2d60fe52deacef117c2151;p=pulseview.git diff --git a/pv/prop/binding/decoderoptions.cpp b/pv/prop/binding/decoderoptions.cpp index 361d85b..8738300 100644 --- a/pv/prop/binding/decoderoptions.cpp +++ b/pv/prop/binding/decoderoptions.cpp @@ -31,8 +31,11 @@ #include #include -using namespace boost; -using namespace std; +using boost::bind; +using boost::none; +using boost::shared_ptr; +using std::map; +using std::string; namespace pv { namespace prop { @@ -54,7 +57,7 @@ DecoderOptions::DecoderOptions( const srd_decoder_option *const opt = (srd_decoder_option*)l->data; - const QString name(opt->desc); + const QString name = QString::fromUtf8(opt->desc); const Property::Getter getter = bind( &DecoderOptions::getter, this, opt->id);