merge fixes
This commit is contained in:
parent
b297339cbd
commit
e2b4965466
2 changed files with 6 additions and 7 deletions
|
@ -474,7 +474,7 @@ void CServerDlg::OnCentServAddrTypeActivated ( int iTypeIdx )
|
|||
UpdateGUIDependencies();
|
||||
}
|
||||
|
||||
void CServerDlg::OnServerStopped();
|
||||
void CServerDlg::OnServerStopped()
|
||||
{
|
||||
UpdateSystemTrayIcon ( false );
|
||||
UpdateRecorderStatus ( QString::null );
|
||||
|
@ -533,7 +533,6 @@ void CServerDlg::OnTimer()
|
|||
ListViewMutex.unlock();
|
||||
}
|
||||
|
||||
|
||||
void CServerDlg::UpdateGUIDependencies()
|
||||
{
|
||||
// get the states which define the GUI dependencies from the server
|
||||
|
@ -654,8 +653,8 @@ void CServerDlg::ModifyAutoStartEntry ( const bool bDoAutoStart )
|
|||
void CServerDlg::UpdateRecorderStatus ( QString sessionDir )
|
||||
{
|
||||
QString currentSessionDir = edtCurrentSessionDir->text();
|
||||
QString strRecorderStatus;
|
||||
bool bIsRecording = false;
|
||||
QString strRecorderStatus;
|
||||
|
||||
if ( pServer->GetRecordingEnabled() )
|
||||
{
|
||||
|
|
|
@ -103,7 +103,7 @@ public slots:
|
|||
void keyPressEvent ( QKeyEvent *e ) // block escape key
|
||||
{ if ( e->key() != Qt::Key_Escape ) QDialog::keyPressEvent ( e ); }
|
||||
|
||||
void OnNewRecordingClicked(); { pServer->RestartRecorder(); }
|
||||
void OnNewRecordingClicked() { pServer->RestartRecorder(); }
|
||||
void OnRecordingSessionStarted ( QString sessionDir )
|
||||
{ UpdateRecorderStatus ( sessionDir ); }
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue