From 1644240b29bddaeb43eb882ecf33063461f04157 Mon Sep 17 00:00:00 2001 From: jules Date: Mon, 19 Jan 2009 15:52:22 +0000 Subject: [PATCH] fixed a small typo --- juce_amalgamated.h | 2 +- src/juce_core/io/files/juce_File.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/juce_amalgamated.h b/juce_amalgamated.h index 759b48310d..59e3d10434 100644 --- a/juce_amalgamated.h +++ b/juce_amalgamated.h @@ -6550,7 +6550,7 @@ public: /** Returns true if this file is a directory that contains one or more subdirectories. @see isDirectory, findChildFiles */ - bool File::containsSubDirectories() const throw(); + bool containsSubDirectories() const throw(); /** Creates a stream to read from this file. diff --git a/src/juce_core/io/files/juce_File.h b/src/juce_core/io/files/juce_File.h index 1382641c42..5953f77128 100644 --- a/src/juce_core/io/files/juce_File.h +++ b/src/juce_core/io/files/juce_File.h @@ -551,7 +551,7 @@ public: /** Returns true if this file is a directory that contains one or more subdirectories. @see isDirectory, findChildFiles */ - bool File::containsSubDirectories() const throw(); + bool containsSubDirectories() const throw(); //============================================================================== /** Creates a stream to read from this file.