1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-04 03:40:07 +00:00

Documentation fixes. Mac OpenGL fix. PositionableAudioSource tweak. Added new class: Expression, and changed RelativeCoordinate to use an Expression to store its position.

This commit is contained in:
Julian Storer 2010-08-18 08:36:30 +01:00
parent 244219bbe2
commit 3e30e09afa
38 changed files with 4301 additions and 2730 deletions

View file

@ -94,6 +94,7 @@ public:
row = newRow;
isSelected = isNowSelected;
repaint();
deleteAllChildren();
}
if (row < owner.getNumRows())
@ -105,13 +106,12 @@ public:
const TableHeaderComponent* const header = owner.getHeader();
const int numColumns = header->getNumColumns (true);
int i;
columnsWithComponents.clear();
if (owner.getModel() != 0)
{
for (i = 0; i < numColumns; ++i)
for (int i = 0; i < numColumns; ++i)
{
const int columnId = header->getColumnIdOfIndex (i, true);
@ -133,7 +133,7 @@ public:
}
}
for (i = getNumChildComponents(); --i >= 0;)
for (int i = getNumChildComponents(); --i >= 0;)
{
Component* const c = getChildComponent (i);