Fix all those warnings from -Wshadow

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@964 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2008-02-19 20:25:21 +00:00
parent 0dfaa1d706
commit 8f22dcc60d
9 changed files with 61 additions and 57 deletions
+3 -3
View File
@@ -270,11 +270,11 @@ public:
Table.SetCell("Channels", it->second->GetChannels());
}
CString sLine;
CString sTmp;
unsigned int uTableIdx = 0;
while (Table.GetLine(uTableIdx++, sLine)) {
PutModule(sLine);
while (Table.GetLine(uTableIdx++, sTmp)) {
PutModule(sTmp);
}
} else if (sCommand.CaseCmp("ADDCHANS") == 0 || sCommand.CaseCmp("DELCHANS") == 0) {
CString sUser = sLine.Token(1);