mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 15:25:35 +08:00
Formatting, minor tweaks
This commit is contained in:
committed by
Mathew Sutcliffe
parent
a1e16ea162
commit
3780bc18e0
@@ -109,10 +109,7 @@ void CSwiftData::init()
|
||||
const CGlobalSetup s(sApp->getGlobalSetup());
|
||||
if (!s.getDbHomePageUrl().isEmpty())
|
||||
{
|
||||
QString t(this->windowTitle());
|
||||
t += " ";
|
||||
t += s.getDbHomePageUrl().toQString(true);
|
||||
this->setWindowTitle(t);
|
||||
this->setWindowTitle(QString("%1 %2").arg(this->windowTitle(), s.getDbHomePageUrl().toQString(true)));
|
||||
}
|
||||
|
||||
sGui->triggerNewVersionCheck(10 * 1000);
|
||||
@@ -158,7 +155,7 @@ void CSwiftData::performGracefulShutdown()
|
||||
|
||||
void CSwiftData::consolidationSettingChanged()
|
||||
{
|
||||
int consolidationSecs = m_consolidationSettings.get();
|
||||
const int consolidationSecs = m_consolidationSettings.get();
|
||||
if (consolidationSecs < 0)
|
||||
{
|
||||
if (m_updater)
|
||||
|
||||
Reference in New Issue
Block a user