Browse Source

Fix Windows build

tags/v2.1-alpha1-winvst
falkTX 6 years ago
parent
commit
6ace3015c0
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      source/modules/water/files/File.cpp

+ 5
- 0
source/modules/water/files/File.cpp View File

@@ -1052,6 +1052,11 @@ bool File::deleteFile() const
: DeleteFile (fullPath.toUTF8()) != 0;
}
File File::getLinkedTarget() const
{
return *this;
}
bool File::copyInternal (const File& dest) const
{
return CopyFile (fullPath.toUTF8(), dest.getFullPathName().toUTF8(), false) != 0;


Loading…
Cancel
Save