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

Removed an old VC6 workaround from Component::findParentComponentOfClass. If you were using its old dummy parameter, just tweak your code to call it using a templated type instead.

This commit is contained in:
jules 2012-05-09 13:58:53 +01:00
parent 584c444ffd
commit 72db44a138

View file

@ -785,14 +785,10 @@ public:
For example findParentComponentOfClass \<MyComp\>() would return the first parent
component that can be dynamically cast to a MyComp, or will return 0 if none
of the parents are suitable.
N.B. The dummy parameter is needed to work around a VC6 compiler bug.
*/
template <class TargetClass>
TargetClass* findParentComponentOfClass (TargetClass* const dummyParameter = nullptr) const
TargetClass* findParentComponentOfClass() const
{
(void) dummyParameter;
for (Component* p = parentComponent; p != nullptr; p = p->parentComponent)
{
TargetClass* const target = dynamic_cast <TargetClass*> (p);