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

Added selection to treeview persistent state. Minor optimisations to AudioThumbnail. Added FTP password support for win32 networking. Cleaned up some file dependencies and altered some return value types to allow better c++0x forwarding behaviour.

This commit is contained in:
Julian Storer 2011-05-30 21:10:57 +01:00
parent b3634661e6
commit 67e22bbb56
241 changed files with 8010 additions and 7848 deletions

View file

@ -222,7 +222,7 @@ int ComboBox::getNumItems() const noexcept
return n;
}
const String ComboBox::getItemText (const int index) const
String ComboBox::getItemText (const int index) const
{
const ItemInfo* const item = getItemForIndex (index);
@ -315,7 +315,7 @@ void ComboBox::valueChanged (Value&)
}
//==============================================================================
const String ComboBox::getText() const
String ComboBox::getText() const
{
return label->getText();
}
@ -365,7 +365,7 @@ void ComboBox::setTextWhenNothingSelected (const String& newMessage)
}
}
const String ComboBox::getTextWhenNothingSelected() const
String ComboBox::getTextWhenNothingSelected() const
{
return textWhenNothingSelected;
}
@ -375,7 +375,7 @@ void ComboBox::setTextWhenNoChoicesAvailable (const String& newMessage)
noChoicesMessage = newMessage;
}
const String ComboBox::getTextWhenNoChoicesAvailable() const
String ComboBox::getTextWhenNoChoicesAvailable() const
{
return noChoicesMessage;
}