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

View File

@@ -89,10 +89,10 @@ public:
if (Table.size()) {
unsigned int uTableIdx = 0;
CString sLine;
CString sTmp;
while (Table.GetLine(uTableIdx++, sLine)) {
PutModule(sLine);
while (Table.GetLine(uTableIdx++, sTmp)) {
PutModule(sTmp);
}
} else {
PutModule("You have no entries.");
@@ -116,10 +116,10 @@ public:
if (Table.size()) {
unsigned int uTableIdx = 0;
CString sLine;
CString sTmp;
while (Table.GetLine(uTableIdx++, sLine)) {
PutModule(sLine);
while (Table.GetLine(uTableIdx++, sTmp)) {
PutModule(sTmp);
}
} else {
PutModule("You have no entries.");