1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +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

@ -88,7 +88,7 @@ public:
const String& noItemsMessage_,
const int minNumber_,
const int maxNumber_)
: ListBox (String::empty, 0),
: ListBox (String::empty, nullptr),
deviceManager (deviceManager_),
noItemsMessage (noItemsMessage_),
minNumber (minNumber_),
@ -650,7 +650,7 @@ public:
ChannelSelectorListBox (const AudioIODeviceType::DeviceSetupDetails& setup_,
const BoxType type_,
const String& noItemsMessage_)
: ListBox (String::empty, 0),
: ListBox (String::empty, nullptr),
setup (setup_),
type (type_),
noItemsMessage (noItemsMessage_)