improve update events

This commit is contained in:
arcan1s
2015-07-20 00:21:39 +03:00
parent c7d998eb12
commit 1110929b14
13 changed files with 96 additions and 65 deletions

View File

@ -151,12 +151,12 @@ void ExtQuotes::setApiVersion(const int _apiVersion)
}
void ExtQuotes::setActive(const bool state)
void ExtQuotes::setActive(const bool _state)
{
if (debug) qDebug() << PDEBUG;
if (debug) qDebug() << PDEBUG << ":" << "State" << state;
if (debug) qDebug() << PDEBUG << ":" << "State" << _state;
m_active = state;
m_active = _state;
}