Windows 7 SP1
MSVS 2010
Qt 库 4.8.4 for Windows (VS 2010)
Visual Studio Add-in 1.1.11 for Qt4
起初,我无法弄清楚为什么这个插槽没有触发:
connect (lineEdit, SIGNAL(textChanged(const QString &)),
this, SLOT(enableFindButton(const Qstring &)));
一个差异清楚地表明:Qstring 应该是 QString。
我的问题:为什么编译?事实上,它会这样编译:
connect (lineEdit, SIGNAL(textChanged(const nonsense &)),
this, SLOT(enableFindButton(const more_nonsense &)));
这是预期的行为吗?为什么这不会引发错误?