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

CustomTypeface unicode fix. Misc nullptr additions.

This commit is contained in:
Julian Storer 2011-04-07 16:49:14 +01:00
parent f04309f44a
commit 46c3a6bbe5
27 changed files with 219 additions and 186 deletions

View file

@ -98,7 +98,7 @@ public:
if (comp != nullptr && columnId != (int) comp->getProperties() [columnProperty])
{
columnComponents.set (i, 0);
columnComponents.set (i, nullptr);
comp = nullptr;
}
@ -267,7 +267,7 @@ private:
//==============================================================================
TableListBox::TableListBox (const String& name, TableListBoxModel* const model_)
: ListBox (name, 0),
: ListBox (name, nullptr),
header (nullptr),
model (model_),
autoSizeOptionsShown (true)