summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btlistitem.h
authorzecke <zecke>2002-07-08 18:46:40 (UTC)
committer zecke <zecke>2002-07-08 18:46:40 (UTC)
commit7d82c654e6a1df83f70b2d81aa05a1175799b66b (patch) (unidiff)
tree079e87ac4dcd96c304a4e8eb7f928194fffe63f1 /noncore/net/opietooth/manager/btlistitem.h
parent35d0ca5cc59b82af7b7ddb343ec092c3171b11ef (diff)
downloadopie-7d82c654e6a1df83f70b2d81aa05a1175799b66b.zip
opie-7d82c654e6a1df83f70b2d81aa05a1175799b66b.tar.gz
opie-7d82c654e6a1df83f70b2d81aa05a1175799b66b.tar.bz2
API clean ups
Diffstat (limited to 'noncore/net/opietooth/manager/btlistitem.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/btlistitem.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/noncore/net/opietooth/manager/btlistitem.h b/noncore/net/opietooth/manager/btlistitem.h
index 8963caa..d7ce03b 100644
--- a/noncore/net/opietooth/manager/btlistitem.h
+++ b/noncore/net/opietooth/manager/btlistitem.h
@@ -12,16 +12,16 @@ namespace OpieTooth {
12 BTListItem( QListViewItem * parent ); 12 BTListItem( QListViewItem * parent );
13 13
14 // name, and then mac and then servicetype 14 // name, and then mac and then servicetype
15 BTListItem( QListView * , QString, QString, QString ); 15 BTListItem( QListView * , const QString&, const QString&, const QString& );
16 BTListItem( QListViewItem * parent , QString, QString , QString ); 16 BTListItem( QListViewItem * parent , const QString&, const QString& , const QString& );
17 ~BTListItem(); 17 ~BTListItem();
18 18
19 void setMac( QString ); 19 void setMac( const QString& );
20 QString mac(); 20 QString mac()const;
21 void setName( QString ); 21 void setName( const QString& );
22 QString name(); 22 QString name()const;
23 void setType( QString ); 23 void setType( const QString& );
24 QString type(); 24 QString type()const;
25 private: 25 private:
26 QString m_name; 26 QString m_name;
27 QString m_mac; 27 QString m_mac;