mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 23:56:29 +02:00
compiler warnings
This commit is contained in:
parent
1d0ba52445
commit
ecae9d5e85
2 changed files with 2 additions and 2 deletions
|
@ -3370,7 +3370,7 @@ void Application::updateWindowTitle(){
|
||||||
#ifndef WIN32
|
#ifndef WIN32
|
||||||
// crashes with vs2013/win32
|
// crashes with vs2013/win32
|
||||||
qDebug("Application title set to: %s", title.toStdString().c_str());
|
qDebug("Application title set to: %s", title.toStdString().c_str());
|
||||||
#endif !WIN32
|
#endif //!WIN32
|
||||||
_window->setWindowTitle(title);
|
_window->setWindowTitle(title);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -102,9 +102,9 @@ Audio::Audio(QObject* parent) :
|
||||||
_scopeOutputOffset(0),
|
_scopeOutputOffset(0),
|
||||||
_framesPerScope(DEFAULT_FRAMES_PER_SCOPE),
|
_framesPerScope(DEFAULT_FRAMES_PER_SCOPE),
|
||||||
_samplesPerScope(NETWORK_SAMPLES_PER_FRAME * _framesPerScope),
|
_samplesPerScope(NETWORK_SAMPLES_PER_FRAME * _framesPerScope),
|
||||||
_peqEnabled(false),
|
|
||||||
_noiseSourceEnabled(false),
|
_noiseSourceEnabled(false),
|
||||||
_toneSourceEnabled(true),
|
_toneSourceEnabled(true),
|
||||||
|
_peqEnabled(false),
|
||||||
_scopeInput(0),
|
_scopeInput(0),
|
||||||
_scopeOutputLeft(0),
|
_scopeOutputLeft(0),
|
||||||
_scopeOutputRight(0),
|
_scopeOutputRight(0),
|
||||||
|
|
Loading…
Reference in a new issue