-rw-r--r-- | libopie2/opiepim/otodo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/opiepim/otodo.h b/libopie2/opiepim/otodo.h index 1443e4f..5bd91d6 100644 --- a/libopie2/opiepim/otodo.h +++ b/libopie2/opiepim/otodo.h | |||
@@ -186,24 +186,24 @@ public: | |||
186 | bool operator<=(const OTodo &toDoEvent )const; | 186 | bool operator<=(const OTodo &toDoEvent )const; |
187 | bool operator!=(const OTodo &toDoEvent )const; | 187 | bool operator!=(const OTodo &toDoEvent )const; |
188 | bool operator>(const OTodo &toDoEvent )const; | 188 | bool operator>(const OTodo &toDoEvent )const; |
189 | bool operator>=(const OTodo &toDoEvent)const; | 189 | bool operator>=(const OTodo &toDoEvent)const; |
190 | bool operator==(const OTodo &toDoEvent )const; | 190 | bool operator==(const OTodo &toDoEvent )const; |
191 | OTodo &operator=(const OTodo &toDoEvent ); | 191 | OTodo &operator=(const OTodo &toDoEvent ); |
192 | 192 | ||
193 | private: | 193 | private: |
194 | class OTodoPrivate; | 194 | class OTodoPrivate; |
195 | struct OTodoData; | 195 | struct OTodoData; |
196 | 196 | ||
197 | void deref(); | 197 | void deref(); |
198 | void changeOrModify(); | 198 | inline void changeOrModify(); |
199 | void copy( OTodoData* src, OTodoData* dest ); | 199 | void copy( OTodoData* src, OTodoData* dest ); |
200 | OTodoPrivate *d; | 200 | OTodoPrivate *d; |
201 | OTodoData *data; | 201 | OTodoData *data; |
202 | 202 | ||
203 | }; | 203 | }; |
204 | inline bool OTodo::operator!=(const OTodo &toDoEvent )const { | 204 | inline bool OTodo::operator!=(const OTodo &toDoEvent )const { |
205 | return !(*this == toDoEvent); | 205 | return !(*this == toDoEvent); |
206 | } | 206 | } |
207 | 207 | ||
208 | 208 | ||
209 | #endif | 209 | #endif |