Skip to content

Commit

Permalink
Fix spelling errors in Windows code.
Browse files Browse the repository at this point in the history
  • Loading branch information
DeathByDenim committed Mar 13, 2015
1 parent d652237 commit 1de1d59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions patcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ void Patcher::processSymLinks()
target_file.remove();

#ifdef _WIN32
if(!from_file.copy(symlink.key()))
if(!source_file.copy(slink.key()))
{
emit error(tr("Error copying duplicate file \"%1\" to \"%2\".\n%3").arg(symlink.value()).arg(symlink.value()).arg(from_file.errorString()));
emit error(tr("Error copying duplicate file \"%1\" to \"%2\".\n%3").arg(slink.value()).arg(slink.value()).arg(source_file.errorString()));
return;
}
#else
Expand Down

0 comments on commit 1de1d59

Please sign in to comment.