mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-03 03:30:06 +00:00
Removed const-ness from some return types to take advantage of future c++0x advantages.
This commit is contained in:
parent
74469aaa83
commit
0853a9b686
154 changed files with 472 additions and 473 deletions
|
|
@ -105,7 +105,7 @@ int TableHeaderComponent::getNumColumns (const bool onlyCountVisibleColumns) con
|
|||
}
|
||||
}
|
||||
|
||||
const String TableHeaderComponent::getColumnName (const int columnId) const
|
||||
String TableHeaderComponent::getColumnName (const int columnId) const
|
||||
{
|
||||
const ColumnInfo* const ci = getInfoForId (columnId);
|
||||
return ci != nullptr ? ci->name : String::empty;
|
||||
|
|
@ -431,7 +431,7 @@ void TableHeaderComponent::reSortTable()
|
|||
}
|
||||
|
||||
//==============================================================================
|
||||
const String TableHeaderComponent::toString() const
|
||||
String TableHeaderComponent::toString() const
|
||||
{
|
||||
String s;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue