@AnneRanch said in Whar is this error saying?:
Thanks , I wad actually triggering on wrong action before. I guess I will never know why I how to read the "() " error to correct my code.
The compiler is actually exactly telling you why it has a problem with the (missing) brackets, I'll quote the part:
cpp-compiler said in mainwindow_Bluetooth.cpp
error: expected '(' for function-style cast or type construction
it thinks your bool is an attempt of you to cast something to an boolean and it thinks the silly programmer forgot to add the bracket and the actual variable that is supposed to be cast.
something like this:
int a = 0;
auto b = bool(a);
or in your particular case:
void triggered(bool variable) { qDebug() << variable }
....
int a = 0;
triggered(bool(a));
The compiler doesn't know that function style cast do only the other people, true c++ programers don't use it at all.