diff options
| author | Alexander Lohnau <[email protected]> | 2020-10-23 19:51:33 +0200 |
|---|---|---|
| committer | Elvis Angelaccio <[email protected]> | 2020-10-23 18:23:06 +0000 |
| commit | 97415729c34851df75c77a67f27d6299c00bfbc4 (patch) | |
| tree | b7a344b54e226aee8db16f6f123a403d8f276aa9 /src/settings/viewmodes | |
| parent | a24327cd50ef17b953ecb908d260b73460158107 (diff) | |
Compile with QT_NO_KEYWORDS
Diffstat (limited to 'src/settings/viewmodes')
| -rw-r--r-- | src/settings/viewmodes/dolphinfontrequester.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settings/viewmodes/dolphinfontrequester.cpp b/src/settings/viewmodes/dolphinfontrequester.cpp index 70969a2a3..cb66870af 100644 --- a/src/settings/viewmodes/dolphinfontrequester.cpp +++ b/src/settings/viewmodes/dolphinfontrequester.cpp @@ -78,13 +78,13 @@ void DolphinFontRequester::openFontDialog() if (ok) { m_customFont = font; m_modeCombo->setFont(m_customFont); - emit changed(); + Q_EMIT changed(); } } void DolphinFontRequester::changeMode(int index) { setMode((index == CustomFont) ? CustomFont : SystemFont); - emit changed(); + Q_EMIT changed(); } |
