summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btlistitem.cpp
authorharlekin <harlekin>2002-06-23 20:07:29 (UTC)
committer harlekin <harlekin>2002-06-23 20:07:29 (UTC)
commit7b861d2f14bdb50558863354522dee7c7a9ef34d (patch) (side-by-side diff)
treebb7633ab55e6564f47e9fd16321fa5841c055671 /noncore/net/opietooth/manager/btlistitem.cpp
parented7e4fe3f0f838957c0830b8357d2252327dc938 (diff)
downloadopie-7b861d2f14bdb50558863354522dee7c7a9ef34d.zip
opie-7b861d2f14bdb50558863354522dee7c7a9ef34d.tar.gz
opie-7b861d2f14bdb50558863354522dee7c7a9ef34d.tar.bz2
update
Diffstat (limited to 'noncore/net/opietooth/manager/btlistitem.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/btlistitem.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/noncore/net/opietooth/manager/btlistitem.cpp b/noncore/net/opietooth/manager/btlistitem.cpp
index 4901710..19d1057 100644
--- a/noncore/net/opietooth/manager/btlistitem.cpp
+++ b/noncore/net/opietooth/manager/btlistitem.cpp
@@ -12,19 +12,22 @@ namespace OpieTooth {
}
// name, and then mac and then servicetype
BTListItem::BTListItem( QListView * parent, QString name , QString mac, QString type )
- : QListViewItem( parent, name, mac, type ){
+ : QListViewItem( parent, name ){
+ setText(4, mac);
+ setText(5, type);
}
BTListItem::BTListItem( QListViewItem * parent , QString name, QString mac, QString type )
- : QListViewItem( parent, name, mac, type ){
-
+ : QListViewItem( parent, name ){
+ setText(4, mac);
+ setText(5, type);
}
BTListItem::~BTListItem() {
}
-}
+};