Domanda

i have a few imagebuttons with their respective buttonListeners.

on the buttonClicked function i try to:

void TestComponent::buttonClicked (Button* activeButton) {

    if (activeButton == typeButton) {

       //do something

    }

}

But i get

"No match for operator == in activeButton..."

How can i add the parent class Button equality operator to ImageButton?

È stato utile?

Soluzione

activeButton is a pointer. What is typeButton?

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top