我有一些imagebuttons和它们各自的buttonListeners。

在buttonClicked函数上,我尝试:

void TestComponent::buttonClicked (Button* activeButton) {

    if (activeButton == typeButton) {

       //do something

    }

}


但是我明白了

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


如何将父类Button相等运算符添加到ImageButton?

最佳答案

activeButton是一个指针。什么是typeButton?

关于c++ - 如何将相等运算符添加到ImageButton(JUCE)?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13355434/

10-13 06:59