]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/Event/Event_Message.h
Salome HOME
Features and plugins loading mechanisms
[modules/shaper.git] / src / Event / Event_Message.h
index 27608b7bf8641a8e42c877a48b91cd1c5ea201d5..6c851815c65372c0d3042e2e134a9ea8e2dc45ab 100644 (file)
@@ -25,7 +25,7 @@ class EVENT_EXPORT Event_ID {
   friend class Event_Loop;
 public:
   /// Returns the text-identifier of the event (for debugging reasons)
-  char* EventText() const {return myID;}
+  char* eventText() const {return myID;}
   /// Allows to compare identifiers
   bool operator==(const Event_ID& theID) const {return myID == theID.myID;}
 };
@@ -46,10 +46,10 @@ public:
   virtual ~Event_Message() {}
 
   //! Returns identifier of the message
-  const Event_ID& EventID() const {return myEventId;}
+  const Event_ID& eventID() const {return myEventId;}
 
   //! Returns sender of the message or NULL if it is anonymous message
-  void* Sender() {return mySender;}
+  void* sender() {return mySender;}
 };
 
 #endif