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:
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;