Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-09-06 06:10:09 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-06 06:10:09 +0400
commit47ec91e8d343c77e494a334ca8054c6d3538d893 (patch)
treed01a9dc7e4a592f4ba4d45fa29711fd251dab3ff /intern/ghost/GHOST_IEventConsumer.h
parent5d2e4bb87e6d3db0a7978dd3bd3ec573a52c4ae9 (diff)
code clenup: comments and some style edits on ghost/osx (odd indentation)
Diffstat (limited to 'intern/ghost/GHOST_IEventConsumer.h')
-rw-r--r--intern/ghost/GHOST_IEventConsumer.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/intern/ghost/GHOST_IEventConsumer.h b/intern/ghost/GHOST_IEventConsumer.h
index cfc4fae7978..5682d04d434 100644
--- a/intern/ghost/GHOST_IEventConsumer.h
+++ b/intern/ghost/GHOST_IEventConsumer.h
@@ -41,9 +41,9 @@
* processEvent() method. They should then be registered with the system that
* they want to receive events. The system will call the processEvent() method
* for every installed event consumer to pass events.
- * @see GHOST_ISystem#addEventConsumer
- * @author Maarten Gribnau
- * @date May 14, 2001
+ * \see GHOST_ISystem#addEventConsumer
+ * \author Maarten Gribnau
+ * \date May 14, 2001
*/
class GHOST_IEventConsumer
{
@@ -57,9 +57,9 @@ public:
/**
* This method is called by the system when it has events to dispatch.
- * @see GHOST_ISystem#dispatchEvents
- * @param event The event that can be handled or ignored.
- * @return Indication as to whether the event was handled.
+ * \see GHOST_ISystem#dispatchEvents
+ * \param event The event that can be handled or ignored.
+ * \return Indication as to whether the event was handled.
*/
virtual bool processEvent(GHOST_IEvent *event) = 0;