I'm trying to send a vector<string> to my GUI using signals and slots. I defined a signal SetWindowList(vector<string>) in class A and a slot SetWindowList(vector<string>) in class B.

I emit SetWindowList(somevectorhere), but the slot is never executed. If I change all the vectors for int, it works perfectly.

How do I send my vector to my GUI?


Thanks!