Fix build (adapt to kdelibs 84ffcc8b).
This commit is contained in:
parent
fb111be903
commit
e9f372bb72
1 changed files with 2 additions and 2 deletions
|
@ -316,7 +316,7 @@ static bool s_loadingDesktopSettings = false;
|
|||
void VirtualDesktopManager::load()
|
||||
{
|
||||
s_loadingDesktopSettings = true;
|
||||
if (m_config.isNull()) {
|
||||
if (m_config) {
|
||||
return;
|
||||
}
|
||||
QString groupname;
|
||||
|
@ -354,7 +354,7 @@ void VirtualDesktopManager::save()
|
|||
if (s_loadingDesktopSettings) {
|
||||
return;
|
||||
}
|
||||
if (m_config.isNull()) {
|
||||
if (m_config) {
|
||||
return;
|
||||
}
|
||||
QString groupname;
|
||||
|
|
Loading…
Reference in a new issue