Skip to content

Commit

Permalink
Fix compile.
Browse files Browse the repository at this point in the history
Former-commit-id: 78ed1eb8f17cdbef0c120bfaecd3719a162398c0
  • Loading branch information
dkocher committed Feb 13, 2015
1 parent 8773dc9 commit d2f0724
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/ch/cyberduck/ui/controller/BrowserController.cs
Expand Up @@ -1650,14 +1650,14 @@ private void View_Synchronize()
private bool View_ValidateNewFile()
{
return IsMounted() && ((Touch) Session.getFeature(typeof (Touch))).isSupported(
new UploadTargetFinder(workdir).find(SelectedPath)
new UploadTargetFinder(Workdir).find(SelectedPath)
);
}

private bool View_ValidateUpload()
{
return IsMounted() && ((Touch) Session.getFeature(typeof (Touch))).isSupported(
new UploadTargetFinder(workdir).find(SelectedPath)
new UploadTargetFinder(Workdir).find(SelectedPath)
);
}

Expand Down

0 comments on commit d2f0724

Please sign in to comment.