~ubuntu-branches/ubuntu/maverick/znc/maverick

« back to all changes in this revision

Viewing changes to modules/sample.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Patrick Matthäi
  • Date: 2010-05-24 18:05:44 UTC
  • mfrom: (1.3.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100524180544-8e4s3f4nj0lhyw7n
Tags: 0.090~rc1-1
* New upstream release candidate.
  - Drop znc-webadmin package. It is now provided in the core source code.
  - Rename discon_kick module to disconkick.
  - Add charset and notes module.
* Add missing dependency on libc-ares-dev to znc-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
        }
89
89
 
90
90
        virtual EModRet OnRaw(CString& sLine) {
91
 
        //      PutModule("OnRaw() [" + sLine + "]");
 
91
                // PutModule("OnRaw() [" + sLine + "]");
92
92
                return CONTINUE;
93
93
        }
94
94
 
95
95
        virtual EModRet OnUserRaw(CString& sLine) {
96
 
        //      PutModule("UserRaw() [" + sLine + "]");
 
96
                // PutModule("UserRaw() [" + sLine + "]");
97
97
                return CONTINUE;
98
98
        }
99
99