mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Changed some return types from being const objects to non-const objects (for better c++11 compliance in future). This may mean that you need to remove the 'const' from your own code if you override the virtual methods that have changed.
This commit is contained in:
parent
dab3472756
commit
2c328dfedc
79 changed files with 126 additions and 128 deletions
|
|
@ -227,7 +227,7 @@ FileTreeComponent::~FileTreeComponent()
|
|||
}
|
||||
|
||||
//==============================================================================
|
||||
const File FileTreeComponent::getSelectedFile (const int index) const
|
||||
File FileTreeComponent::getSelectedFile (const int index) const
|
||||
{
|
||||
const FileListTreeItem* const item = dynamic_cast <const FileListTreeItem*> (getSelectedItem (index));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue