author | mickeyl <mickeyl> | 2003-01-23 23:08:53 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-01-23 23:08:53 (UTC) |
commit | 3de1877c4c39c3cc99848204da8e32fc6e3d9efb (patch) (unidiff) | |
tree | 92a4f549dfb3e359cbaaa953bfdb1846859c56e0 | |
parent | 9fbf521bec0da1a4909d91cf4a1766f7b4cd1a19 (diff) | |
download | opie-3de1877c4c39c3cc99848204da8e32fc6e3d9efb.zip opie-3de1877c4c39c3cc99848204da8e32fc6e3d9efb.tar.gz opie-3de1877c4c39c3cc99848204da8e32fc6e3d9efb.tar.bz2 |
add two missing public: to make it compile with gcc 3.x
funny that gcc 2.9x just doesn't care...
-rw-r--r-- | noncore/net/opietooth/lib/services.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/net/opietooth/lib/services.h b/noncore/net/opietooth/lib/services.h index 7cce5e1..02629e6 100644 --- a/noncore/net/opietooth/lib/services.h +++ b/noncore/net/opietooth/lib/services.h | |||
@@ -8,13 +8,13 @@ | |||
8 | namespace OpieTooth { | 8 | namespace OpieTooth { |
9 | /** | 9 | /** |
10 | * Services lets shows you all available services | 10 | * Services lets shows you all available services |
11 | * on a remote device | 11 | * on a remote device |
12 | */ | 12 | */ |
13 | class Services { | 13 | class Services { |
14 | 14 | public: | |
15 | /** The profile descriptor | 15 | /** The profile descriptor |
16 | * | 16 | * |
17 | */ | 17 | */ |
18 | class ProfileDescriptor{ | 18 | class ProfileDescriptor{ |
19 | public: | 19 | public: |
20 | /** typedef */ | 20 | /** typedef */ |
@@ -67,12 +67,13 @@ namespace OpieTooth { | |||
67 | // friend bool operator==(const ProfileDescriptor&, const ProfileDescriptor& ); | 67 | // friend bool operator==(const ProfileDescriptor&, const ProfileDescriptor& ); |
68 | private: | 68 | private: |
69 | QString m_id; | 69 | QString m_id; |
70 | int m_idInt; | 70 | int m_idInt; |
71 | int m_version; | 71 | int m_version; |
72 | }; | 72 | }; |
73 | public: | ||
73 | /** | 74 | /** |
74 | * Protocol Descriptor | 75 | * Protocol Descriptor |
75 | */ | 76 | */ |
76 | class ProtocolDescriptor { | 77 | class ProtocolDescriptor { |
77 | public: | 78 | public: |
78 | typedef QValueList<ProtocolDescriptor> ValueList; | 79 | typedef QValueList<ProtocolDescriptor> ValueList; |