Ejemplo n.º 1
0
void QtTestOutput::ReportError( std::string const& 
                               , int 
                               , std::string const& 
                               , std::string const& 
                               , std::string const& )
{
    this->isGood = false;
    Q_EMIT goodChanged(this->isGood);
}
Ejemplo n.º 2
0
void MyThing::beGood(bool good) {
    this->m_good=good;
    emit goodChanged(good);
}