author | korovkin <korovkin> | 2006-03-26 20:29:20 (UTC) |
---|---|---|
committer | korovkin <korovkin> | 2006-03-26 20:29:20 (UTC) |
commit | 8cd6aceae9ddf16a7f6ed3a10d361f927fd164e1 (patch) (unidiff) | |
tree | a76fd890724b3d1954aa398d52fc7ac26fae0d90 | |
parent | c4f82599db775f52c7e04cce09c7c45ecc89ccfd (diff) | |
download | opie-8cd6aceae9ddf16a7f6ed3a10d361f927fd164e1.zip opie-8cd6aceae9ddf16a7f6ed3a10d361f927fd164e1.tar.gz opie-8cd6aceae9ddf16a7f6ed3a10d361f927fd164e1.tar.bz2 |
Made device names in national codings readable.
-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 | |||
@@ -215,17 +215,17 @@ RemoteDevice::ValueList Manager::parseHCIOutput(const QString& output ) { | |||
215 | str = (*it).stripWhiteSpace(); | 215 | str = (*it).stripWhiteSpace(); |
216 | odebug << "Manager: OpieTooth " << str.latin1() << oendl; | 216 | odebug << "Manager: OpieTooth " << str.latin1() << oendl; |
217 | int pos = str.findRev(':' ); | 217 | int pos = str.findRev(':' ); |
218 | if ( pos > 0 ) { | 218 | if ( pos > 0 ) { |
219 | QString mac = str.left(17 ); | 219 | QString mac = str.left(17 ); |
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 | } |
227 | return list; | 227 | return list; |
228 | } | 228 | } |
229 | 229 | ||
230 | ////// hcitool cc and hcitool con | 230 | ////// hcitool cc and hcitool con |
231 | 231 | ||
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 | |||
@@ -2,17 +2,17 @@ | |||
2 | #include "btdeviceitem.h" | 2 | #include "btdeviceitem.h" |
3 | 3 | ||
4 | using namespace OpieTooth; | 4 | using namespace OpieTooth; |
5 | 5 | ||
6 | 6 | ||
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() { |
14 | // nothing I'm aware of | 14 | // nothing I'm aware of |
15 | } | 15 | } |
16 | RemoteDevice BTDeviceItem::remoteDevice() const { | 16 | RemoteDevice BTDeviceItem::remoteDevice() const { |
17 | return m_device; | 17 | return m_device; |
18 | } | 18 | } |