1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 09:32:12 +01:00

Guard against null QProxyStyle::baseStyle()

See #1686 #1707
This commit is contained in:
David Rosca 2015-10-01 20:25:22 +02:00
parent ffcf137967
commit 939ebeb2c9

View File

@ -477,7 +477,10 @@ void MainApplication::setProxyStyle(ProxyStyle* style)
QString MainApplication::styleName() const
{
return m_proxyStyle ? m_proxyStyle->baseStyle()->objectName() : style()->objectName();
if (m_proxyStyle && m_proxyStyle->baseStyle())
return m_proxyStyle->baseStyle()->objectName();
return style()->objectName();
}
QString MainApplication::currentLanguageFile() const