Browse Source

tags/2021-05-28
jules 17 years ago
parent
commit
688c17752f
2 changed files with 4 additions and 2 deletions
  1. +2
    -1
      extras/audio plugin host/src/includes.h
  2. +2
    -1
      extras/binarybuilder/BinaryBuilder.cpp

+ 2
- 1
extras/audio plugin host/src/includes.h View File

@@ -1,4 +1,5 @@
#include "juce_AppConfig.h"
#include "../../../juce_amalgamated.h"
using juce::uint32;
using JUCE_NAMESPACE::uint32;

+ 2
- 1
extras/binarybuilder/BinaryBuilder.cpp View File

@@ -69,8 +69,9 @@ static int addFile (const File& file,
static bool isHiddenFile (const File& f, const File& root)
{
return f.getFileName().endsWithIgnoreCase (T(".scc"))
|| f.getFileName() != T(".svn")
|| f.getFileName().startsWithChar (T('.'))
|| f.getSize() == 0
|| (f.getSize() == 0 && ! f.isDirectory())
|| (f.getParentDirectory() != root && isHiddenFile (f.getParentDirectory(), root));
}


Loading…
Cancel
Save