I have
connect( this, SIGNAL( userInputEntered( long int, QString, int ) ), supports, SLOT( slotInputEntered( long int, QString, int ) ) );
If the "long int" = 13203 the connection works, but if the "long int" = 130203 it does not work. No warning or error messages. The SLOT is
void SupportLines::slotInputEntered( long int function, QString text, int number )
I thought a long int could be greater then 32768. My C++ book says it can be up to 2147483647 if signed. Am I crazy?
Thanks in advance.