-rw-r--r-- | noncore/net/opietooth/lib/manager.cc | 2 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/btdeviceitem.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/noncore/net/opietooth/lib/manager.cc b/noncore/net/opietooth/lib/manager.cc index 83100f1..83accf7 100644 --- a/noncore/net/opietooth/lib/manager.cc +++ b/noncore/net/opietooth/lib/manager.cc | |||
@@ -220,7 +220,7 @@ RemoteDevice::ValueList Manager::parseHCIOutput(const QString& output ) { | |||
220 | str.remove( 0, 17 ); | 220 | str.remove( 0, 17 ); |
221 | odebug << "Manager: mac " << mac.latin1() << oendl; | 221 | odebug << "Manager: mac " << mac.latin1() << oendl; |
222 | odebug << "Manager: rest: " << str.latin1() << oendl; | 222 | odebug << "Manager: rest: " << str.latin1() << oendl; |
223 | RemoteDevice rem( mac , str.stripWhiteSpace() ); | 223 | RemoteDevice rem( mac , QString::fromUtf8(str.stripWhiteSpace()) ); |
224 | list.append( rem ); | 224 | list.append( rem ); |
225 | } | 225 | } |
226 | } | 226 | } |
diff --git a/noncore/net/opietooth/manager/btdeviceitem.cpp b/noncore/net/opietooth/manager/btdeviceitem.cpp index c112463..fb1b1c1 100644 --- a/noncore/net/opietooth/manager/btdeviceitem.cpp +++ b/noncore/net/opietooth/manager/btdeviceitem.cpp | |||
@@ -7,7 +7,7 @@ using namespace OpieTooth; | |||
7 | BTDeviceItem::BTDeviceItem( QListView* parent, const RemoteDevice& dev ) | 7 | BTDeviceItem::BTDeviceItem( QListView* parent, const RemoteDevice& dev ) |
8 | : BTListItem( parent ) { | 8 | : BTListItem( parent ) { |
9 | 9 | ||
10 | setText( 0, dev.name().utf8() ); | 10 | setText( 0, dev.name() ); |
11 | m_device = dev; | 11 | m_device = dev; |
12 | }; | 12 | }; |
13 | BTDeviceItem::~BTDeviceItem() { | 13 | BTDeviceItem::~BTDeviceItem() { |