lineEdit->textChanged信号不触发的原因

  项目要求是当lineEdit中的内容发生改变时,激活find按纽。但实际运行结果却不行,发现是自己的connect语句写错了:
lineEdit->textChanged信号不触发的原因_第1张图片

// connect ( lineEdit, SIGNAL ( textChanged ( QString & ) ), this, SLOT ( enableFindButton ( QString & ) ) ); /* 错误写法 */
connect ( lineEdit, SIGNAL ( textChanged ( const QString & ) ), this, SLOT ( enableFindButton ( const QString & ) ) );

你可能感兴趣的:(lineEdit->textChanged信号不触发的原因)