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_IEvent.h
parent5d2e4bb87e6d3db0a7978dd3bd3ec573a52c4ae9 (diff)
code clenup: comments and some style edits on ghost/osx (odd indentation)
Diffstat (limited to 'intern/ghost/GHOST_IEvent.h')
-rw-r--r--intern/ghost/GHOST_IEvent.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/intern/ghost/GHOST_IEvent.h b/intern/ghost/GHOST_IEvent.h
index ef63c57caa5..ba5d9ee33b9 100644
--- a/intern/ghost/GHOST_IEvent.h
+++ b/intern/ghost/GHOST_IEvent.h
@@ -45,10 +45,10 @@ class GHOST_IWindow;
* Use the getType() method to retrieve the type of event and the getData()
* method to get the event data out. Using the event type you can cast the
* event data to the correct event dat structure.
- * @see GHOST_IEventConsumer#processEvent
- * @see GHOST_TEventType
- * @author Maarten Gribnau
- * @date May 31, 2001
+ * \see GHOST_IEventConsumer#processEvent
+ * \see GHOST_TEventType
+ * \author Maarten Gribnau
+ * \date May 31, 2001
*/
class GHOST_IEvent
{
@@ -62,26 +62,26 @@ public:
/**
* Returns the event type.
- * @return The event type.
+ * \return The event type.
*/
virtual GHOST_TEventType getType() = 0;
/**
* Returns the time this event was generated.
- * @return The event generation time.
+ * \return The event generation time.
*/
virtual GHOST_TUns64 getTime() = 0;
/**
* Returns the window this event was generated on,
* or NULL if it is a 'system' event.
- * @return The generating window.
+ * \return The generating window.
*/
virtual GHOST_IWindow *getWindow() = 0;
/**
* Returns the event data.
- * @return The event data.
+ * \return The event data.
*/
virtual GHOST_TEventDataPtr getData() = 0;