avoid warning about shadowed variable
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76292 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -143,8 +143,8 @@ wxFileSystemWatcherBase::AddAny(const wxFileName& path,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
wxFSWatchInfo& watch = it->second;
|
wxFSWatchInfo& watch2 = it->second;
|
||||||
int count = watch.IncRef();
|
int count = watch2.IncRef();
|
||||||
wxLogTrace(wxTRACE_FSWATCHER,
|
wxLogTrace(wxTRACE_FSWATCHER,
|
||||||
"'%s' is now watched %d times", canonical, count);
|
"'%s' is now watched %d times", canonical, count);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user