1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Minor fix for Path. Added a missing file.

This commit is contained in:
Julian Storer 2011-09-07 12:23:05 +01:00
parent da7e8603f7
commit c0fb38c35c
5 changed files with 23 additions and 4 deletions

View file

@ -304,6 +304,11 @@ FilePreviewComponent* FileBrowserComponent::getPreviewComponent() const noexcept
return previewComp;
}
DirectoryContentsDisplayComponent* FileBrowserComponent::getDisplayComponent() const noexcept
{
return fileListComponent;
}
//==============================================================================
void FileBrowserComponent::resized()
{

View file

@ -206,6 +206,9 @@ public:
/** @internal */
FilePreviewComponent* getPreviewComponent() const noexcept;
/** @internal */
DirectoryContentsDisplayComponent* getDisplayComponent() const noexcept;
protected:
/** Returns a list of names and paths for the default places the user might want to look.
Use an empty string to indicate a section break.