summaryrefslogtreecommitdiff
authorzecke <zecke>2003-05-07 15:09:34 (UTC)
committer zecke <zecke>2003-05-07 15:09:34 (UTC)
commit1a550df3248342a8c863951ba733b862ca222216 (patch) (unidiff)
treec0c24947496d7984a28dfe134624567aa250bc38
parent4a619c6ad79d571f2adcff58dc2bf8918c622c83 (diff)
downloadopie-1a550df3248342a8c863951ba733b862ca222216.zip
opie-1a550df3248342a8c863951ba733b862ca222216.tar.gz
opie-1a550df3248342a8c863951ba733b862ca222216.tar.bz2
data is a method name...
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/odevicebutton.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie/odevicebutton.h b/libopie/odevicebutton.h
index abe27d6..fcc2af1 100644
--- a/libopie/odevicebutton.h
+++ b/libopie/odevicebutton.h
@@ -42,25 +42,25 @@ public:
42 42
43 QCString channel ( ) const; 43 QCString channel ( ) const;
44 QCString message ( ) const; 44 QCString message ( ) const;
45 QByteArray data ( ) const; 45 QByteArray data ( ) const;
46 46
47 bool send ( ); 47 bool send ( );
48 48
49private: 49private:
50 void init ( const QCString &m_channel, const QCString &message, const QByteArray &args ); 50 void init ( const QCString &m_channel, const QCString &message, const QByteArray &args );
51 51
52 OQCopMessageData *d; 52 OQCopMessageData *d;
53 class Private; 53 class Private;
54 Private* data; 54 Private* m_data;
55}; 55};
56 56
57 57
58/** 58/**
59 * This class represents a physical button on a Qtopia device. A device may 59 * This class represents a physical button on a Qtopia device. A device may
60 * have n "user programmable" buttons, which are number 1..n. The location 60 * have n "user programmable" buttons, which are number 1..n. The location
61 * and number of buttons will vary from device to device. userText() and pixmap() 61 * and number of buttons will vary from device to device. userText() and pixmap()
62 * may be used to describe this button to the user in help documentation. 62 * may be used to describe this button to the user in help documentation.
63 * 63 *
64 * @version 1.0 64 * @version 1.0
65 * @author Trolltech 65 * @author Trolltech
66 * @short A representation of buttons 66 * @short A representation of buttons