예제 #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);
}
예제 #2
0
파일: mything.cpp 프로젝트: h0ru5/qt-tryout
void MyThing::beGood(bool good) {
    this->m_good=good;
    emit goodChanged(good);
}