Commented out more debug print statements in Qt GUI.
This commit is contained in:
parent
97465f0266
commit
49590c40bb
|
@ -386,7 +386,7 @@ void InputConfDialog_t::expSelect(int index)
|
||||||
void InputConfDialog_t::fourScoreChanged(int state)
|
void InputConfDialog_t::fourScoreChanged(int state)
|
||||||
{
|
{
|
||||||
int value = (state == Qt::Unchecked) ? 0 : 1;
|
int value = (state == Qt::Unchecked) ? 0 : 1;
|
||||||
printf("Set 'SDL.FourScore' = %i\n", value);
|
//printf("Set 'SDL.FourScore' = %i\n", value);
|
||||||
g_config->setOption("SDL.FourScore", value);
|
g_config->setOption("SDL.FourScore", value);
|
||||||
|
|
||||||
setInputs();
|
setInputs();
|
||||||
|
|
|
@ -1362,7 +1362,7 @@ SymbolEditWindow::~SymbolEditWindow(void)
|
||||||
//--------------------------------------------------------------
|
//--------------------------------------------------------------
|
||||||
void SymbolEditWindow::closeEvent(QCloseEvent *event)
|
void SymbolEditWindow::closeEvent(QCloseEvent *event)
|
||||||
{
|
{
|
||||||
printf("Debugger Close Window Event\n");
|
//printf("Symbolic Debug Close Window Event\n");
|
||||||
done(0);
|
done(0);
|
||||||
deleteLater();
|
deleteLater();
|
||||||
event->accept();
|
event->accept();
|
||||||
|
|
|
@ -558,7 +558,7 @@ void TraceLoggerDialog_t::openLogFile(void)
|
||||||
QString filename;
|
QString filename;
|
||||||
QFileDialog dialog(this, tr("Select Log File"));
|
QFileDialog dialog(this, tr("Select Log File"));
|
||||||
|
|
||||||
printf("Log File Select\n");
|
//printf("Log File Select\n");
|
||||||
|
|
||||||
dialog.setFileMode(QFileDialog::AnyFile);
|
dialog.setFileMode(QFileDialog::AnyFile);
|
||||||
|
|
||||||
|
@ -2481,7 +2481,7 @@ TraceLogDiskThread_t::TraceLogDiskThread_t( QObject *parent )
|
||||||
//----------------------------------------------------
|
//----------------------------------------------------
|
||||||
TraceLogDiskThread_t::~TraceLogDiskThread_t(void)
|
TraceLogDiskThread_t::~TraceLogDiskThread_t(void)
|
||||||
{
|
{
|
||||||
printf("Disk Thread Cleanup\n");
|
//printf("Disk Thread Cleanup\n");
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
if (logFile != INVALID_HANDLE_VALUE)
|
if (logFile != INVALID_HANDLE_VALUE)
|
||||||
{
|
{
|
||||||
|
@ -2509,7 +2509,7 @@ void TraceLogDiskThread_t::run(void)
|
||||||
int i,idx=0;
|
int i,idx=0;
|
||||||
int blockSize = 4 * 1024;
|
int blockSize = 4 * 1024;
|
||||||
|
|
||||||
printf("Trace Log Disk Start\n");
|
//printf("Trace Log Disk Start\n");
|
||||||
|
|
||||||
setPriority( QThread::HighestPriority );
|
setPriority( QThread::HighestPriority );
|
||||||
|
|
||||||
|
@ -2606,7 +2606,7 @@ void TraceLogDiskThread_t::run(void)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
printf("Trace Log Disk Exit\n");
|
//printf("Trace Log Disk Exit\n");
|
||||||
emit finished();
|
emit finished();
|
||||||
}
|
}
|
||||||
//----------------------------------------------------
|
//----------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue