mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Mingw fix. Spelling correction.
This commit is contained in:
parent
8fd0dc3f74
commit
f12f85ac06
3 changed files with 3 additions and 3 deletions
|
|
@ -136,7 +136,7 @@ public:
|
|||
JUCE_COMRESULT QueryInterface (REFIID refId, void** result)
|
||||
{
|
||||
if (refId == __uuidof (ComClass))
|
||||
return this->castToType <ComClass> (result);
|
||||
return this->template castToType <ComClass> (result);
|
||||
|
||||
return ComBaseClassHelperBase <ComClass>::QueryInterface (refId, result);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -933,7 +933,7 @@ void ListBox::startDragAndDrop (const MouseEvent& e, const var& dragDescription,
|
|||
Component* ListBoxModel::refreshComponentForRow (int, bool, Component* existingComponentToUpdate)
|
||||
{
|
||||
(void) existingComponentToUpdate;
|
||||
jassert (existingComponentToUpdate == nullptr); // indicates a failure in the code the recycles the components
|
||||
jassert (existingComponentToUpdate == nullptr); // indicates a failure in the code that recycles the components
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -472,6 +472,6 @@ var TableListBoxModel::getDragSourceDescription (const SparseSet<int>&)
|
|||
Component* TableListBoxModel::refreshComponentForCell (int, int, bool, Component* existingComponentToUpdate)
|
||||
{
|
||||
(void) existingComponentToUpdate;
|
||||
jassert (existingComponentToUpdate == nullptr); // indicates a failure in the code the recycles the components
|
||||
jassert (existingComponentToUpdate == nullptr); // indicates a failure in the code that recycles the components
|
||||
return nullptr;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue