small fixes
This commit is contained in:
parent
a6a10d537e
commit
b1874d193f
4 changed files with 1 additions and 9 deletions
|
@ -1200,8 +1200,3 @@ rbtReverbSelR->setStyleSheet ( "" );
|
|||
// also apply GUI design to child GUI controls
|
||||
MainMixerBoard->SetGUIDesign ( eNewDesign );
|
||||
}
|
||||
|
||||
void CClientDlg::accept()
|
||||
{
|
||||
close();
|
||||
}
|
||||
|
|
|
@ -206,7 +206,7 @@ public slots:
|
|||
void OnNumClientsChanged ( int iNewNumClients );
|
||||
void OnNewClientLevelChanged() { MainMixerBoard->iNewClientFaderLevel = pClient->iNewClientFaderLevel; }
|
||||
|
||||
void accept();
|
||||
void accept() { close(); } // introduced by pljones
|
||||
|
||||
void keyPressEvent ( QKeyEvent *e ) // block escape key
|
||||
{ if ( e->key() != Qt::Key_Escape ) QDialog::keyPressEvent ( e ); }
|
||||
|
|
|
@ -40,7 +40,6 @@
|
|||
#include "util.h"
|
||||
#include "serverlogging.h"
|
||||
#include "serverlist.h"
|
||||
|
||||
#include "recorder/jamrecorder.h"
|
||||
|
||||
|
||||
|
|
|
@ -346,7 +346,6 @@ void CServerLogging::AddNewConnection ( const QHostAddress& ClientInetAddr )
|
|||
QTextStream tsConsoleStream ( stdout );
|
||||
tsConsoleStream << strLogStr << endl; // on console
|
||||
#endif
|
||||
|
||||
*this << strLogStr; // in log file
|
||||
|
||||
// add element to history
|
||||
|
@ -362,7 +361,6 @@ void CServerLogging::AddServerStopped()
|
|||
QTextStream tsConsoleStream ( stdout );
|
||||
tsConsoleStream << strLogStr << endl; // on console
|
||||
#endif
|
||||
|
||||
*this << strLogStr; // in log file
|
||||
|
||||
// add element to history and update on server stop
|
||||
|
|
Loading…
Reference in a new issue