コード例 #1
0
ファイル: kueuewindow.cpp プロジェクト: bochi/kueue
void KueueWindow::showDetailedDescription( QString id, bool b )
{   
    DetailWindow* det = new DetailWindow( id, b );
    
    connect( det, SIGNAL( done( DetailWindow* ) ), 
             this, SLOT( detailWindowClosed( DetailWindow* ) ) ); 
    
    det->setWindowTitle( "Details for SR#" + id );
    det->show();
}