想請各位大大一下
就是我宣告一個 QToolButton *toolButton_1;
和一個private slot: void testsetText(QString str);
想用他執行 connect(toolButton_1, SIGNAL(clicked()), this, SLOT(testsetText("123")));
能將123傳到
void test::testsetText(QString str)
{
mainedit->setedit(str)
}中做str的處理,可是這樣好像connect會沒有反應,如果改成void testsetText(); 和connect(toolButton_1, SIGNAL(clicked()), this, SLOT(testsetText()));就可以,想請問要怎麼使用才能讓connect(toolButton_1, SIGNAL(clicked()), this, SLOT(testsetText("123")));有動作呢?slot後面不能傳參數嗎?
可以請各位大大解答一下嗎?
非常感謝