Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - xxh

#1
- What compiler version are you using? Visual Studio 2013 update 5
- Did you download the precompiled libraries, or did you build from source? precompiled
- Are you linking statically, or dynamically? statically
- If needed/possible, provide a complete but minimal example that I can test.

I've tried modifying and using multiple examples, tutorials on the site into a class. But every time I try to do a signal ->connect
e.g.     button->connect("pressed", &MyClass::login, editBoxUsername, editBoxPassword);
or even removing the parameters (button->connect("pressed", &MyClass::login)
I get the error
Error   2   error C2064: term does not evaluate to a function taking 2 arguments   c:\program files (x86)\microsoft visual studio 12.0\vc\include\functional   1149   1   
or 0 arguments... any arguments. It doesn't seem to like the binding, and I have no idea how to fix this.