Remove trailing whitespace

This commit is contained in:
Kyle Fuller
2012-01-11 13:09:16 +00:00
parent 1b7c9f4ed0
commit 4abf3feae4
3 changed files with 7 additions and 7 deletions
+5 -5
View File
@@ -141,14 +141,14 @@ You can write your own modules in either C++, python or perl.
C++ modules are compiled by either saving them in the modules source dir and
running make or with the znc-buildmod shell script.
For additional info look in the wiki:
[Writing Modules](http://wiki.znc.in/WritingModules)
[Module Hooks](http://wiki.znc.in/ModuleHooks)
For additional info look in the wiki:
[Writing Modules](http://wiki.znc.in/WritingModules)
[Module Hooks](http://wiki.znc.in/ModuleHooks)
Perl modules are loaded through the global module modperl.
Perl modules are loaded through the global module modperl.
Details: [ModPerl](http://wiki.znc.in/Modperl)
Python modules are loaded through the global module modpython.
Python modules are loaded through the global module modpython.
Details: [ModPython](http://wiki.znc.in/Modpython)
## Further infos
+1 -1
View File
@@ -10,7 +10,7 @@
*
* I originally wrote this module for when I had multiple clients connected to ZNC. I would leave work and forget to close my client, arriving at home
* and re-attaching there someone may have messaged me in commute and I wouldn't know it until I would arrive back at work the next day. I wrote it such that
* my xchat client would monitor desktop activity and ping the module to let it know I was active. Within a few minutes of inactivity the pinging stops and
* my xchat client would monitor desktop activity and ping the module to let it know I was active. Within a few minutes of inactivity the pinging stops and
* the away module sets the user as away and logging commences.
*/
+1 -1
View File
@@ -386,7 +386,7 @@ bool CUser::ParseConfig(CConfig* pConfig, CString& sError) {
CString sNetworkModPath = (*it)->GetNetworkPath() + "/moddata/" + sModName;
if (!CFile::Exists(sNetworkModPath)) {
CDir::MakeDir(sNetworkModPath);
}
}
fNVFile.Copy(sNetworkModPath + "/.registry");
}