diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-01-02 09:05:39 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-01-02 09:05:39 +0000 |
commit | 86a8787240df394667ce81e3ff8a0e4238edb137 (patch) | |
tree | 1d371fe6828480e7cecdcb75a8887a2b4bb83f53 /ace/Event_Handler.cpp | |
parent | 90860cc6a094d03da62ba13d342958179d5f906e (diff) | |
download | ATCD-86a8787240df394667ce81e3ff8a0e4238edb137.tar.gz |
foo
Diffstat (limited to 'ace/Event_Handler.cpp')
-rw-r--r-- | ace/Event_Handler.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Event_Handler.cpp b/ace/Event_Handler.cpp index ef2fbdb9b64..2b9ec440911 100644 --- a/ace/Event_Handler.cpp +++ b/ace/Event_Handler.cpp @@ -46,18 +46,18 @@ ACE_Event_Handler::set_handle (ACE_HANDLE) // Gets the priority of this handler. int -ACE_Event_Handler::get_priority (void) const +ACE_Event_Handler::priority (void) const { - ACE_TRACE ("ACE_Event_Handler::get_priority"); + ACE_TRACE ("ACE_Event_Handler::priority"); return this->priority_; } // Sets the priority void -ACE_Event_Handler::set_priority (int priority) +ACE_Event_Handler::priority (int priority) { - ACE_TRACE ("ACE_Event_Handler::set_priority"); + ACE_TRACE ("ACE_Event_Handler::priority"); this->priority_ = priority; } |