I have a taskbar menu that when clicked is connected to a slot that gets the trigger event. Now the problem is that I want to know which menu item was clicked, but I don\'t
I'd also like to add that you can use the sender method if you just need to find out what widget sent the signal. For example:
sender
def menuClickedFunc(self): # The sender object: sender = self.sender() # The sender object's name: senderName = sender.objectName() print senderName