1
0
Fork 0
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:
jules 2013-01-14 09:37:15 +00:00
parent 8fd0dc3f74
commit f12f85ac06
3 changed files with 3 additions and 3 deletions

View file

@ -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);
}

View file

@ -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;
}

View file

@ -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;
}