Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
古い構文を使用すると、信号を転送することができました。例:
connect(sender, SIGNAL(valueChanged(QString,QString)), this, SIGNAL(updateValue(QString,QString)));
新しいQt5構文を使用するのが好きです。新しい構文を使用して信号を転送することは可能ですか?
シグナルは単なる方法にすぎません。そのままお使いいただけます。このようなもの:
connect(sender, &Sender::valueChanged, receiver, &Receiver::updateValue);