Merged revisions 262,264-265,267-282,284-298,300-311 via svnmerge from
[senf.git] / PPI / Events.hh
index 0a89adb..154beba 100644 (file)
@@ -34,7 +34,7 @@ namespace ppi {
 
     /** \brief Generic event interface baseclass
 
-        The EventDescriptor baseclass provides an interface to manuplate events in a generic
+        The EventDescriptor baseclass provides an interface to manipulate events in a generic
         way. This allows to register events or to temporarily disable event processing.
      */ 
     class EventDescriptor
@@ -53,7 +53,7 @@ namespace ppi {
         virtual void v_register(CallbackType handler) = 0; ///< Called to register the event
         virtual void v_unregister() = 0; ///< Called to unregister the event
         virtual void v_enable() = 0;    ///< Called to enable the event delivery
-        virtual void v_disable() = 0;   ///< Called to disable the event delilvery
+        virtual void v_disable() = 0;   ///< Called to disable the event delivery
         virtual void v_process() = 0;   ///< Called whenever the event is signaled
                                         /**< This virtual method is called \e after every call to
                                              the event handler to provide a hook for further
@@ -79,4 +79,5 @@ namespace ppi {
 // indent-tabs-mode: nil
 // ispell-local-dictionary: "american"
 // compile-command: "scons -u test"
+// comment-column: 40
 // End: