<div>graesslin requested changes to this revision.<br />
graesslin added a comment.<br />
This revision now requires changes to proceed.</div><br /><div><div><p>Given that you don't connect to the timer at all, I think the usage of QTimer is wrong here. QElapsedTimer seems like the better choice here.</p>

<p>The main change would be in configChanged where it would become:</p>

<div class="remarkup-code-block" style="margin: 12px 0;" data-code-lang="text" data-sigil="remarkup-code-block"><pre class="remarkup-code" style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; padding: 12px; margin: 0; background: rgba(71, 87, 120, 0.08);">if (m_changedBlockTimer->isValid() && !m_changedBlockTimer->hasExpired(100)) {
    // still active
   m_changedBlockTimer->start();
} else {
    // stop the timer
   m_changedBlockTimer->invalidate();
}</pre></div></div></div><br /><div><strong>INLINE COMMENTS</strong><div><div style="margin: 6px 0 12px 0;"><div style="border: 1px solid #C7CCD9; border-radius: 3px;"><div style="padding: 0; background: #F7F7F7; border-color: #e3e4e8; border-style: solid; border-width: 0 0 1px 0; margin: 0;"><div style="color: #74777d; background: #eff2f4; padding: 6px 8px; overflow: hidden;"><a style="float: right; text-decoration: none;" href="https://phabricator.kde.org/D1730#inline-6795" rel="noreferrer">View Inline</a><span style="color: #4b4d51; font-weight: bold;">daemon.cpp:86</span></div>
<div style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; white-space: pre-wrap; clear: both; padding: 4px 0; margin: 0;"><div style="padding: 0 8px; margin: 0 4px; ">    <span style="color: #aa4000">delete</span> <span class="n">m_lidClosedTimer</span><span class="p">;</span>
</div><div style="padding: 0 8px; margin: 0 4px; background: #d0ffd0;">    <span style="color: #aa4000">delete</span> <span class="n">m_changeBlockTimer</span><span class="p">;</span>
</div></div></div>
<div style="margin: 8px 0; padding: 0 12px;"><p style="padding: 0; margin: 8px;">why delete manually? Either pass this on construction or use a QScopedPointer.</p>

<p style="padding: 0; margin: 8px;">I see that it's already done like that for the other cases, but I don't think it's a good idea to copy bad practice in new code.</p></div></div></div></div></div><br /><div><strong>REPOSITORY</strong><div><div>rKSCREEN KScreen</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D1730" rel="noreferrer">https://phabricator.kde.org/D1730</a></div></div><br /><div><strong>EMAIL PREFERENCES</strong><div><a href="https://phabricator.kde.org/settings/panel/emailpreferences/" rel="noreferrer">https://phabricator.kde.org/settings/panel/emailpreferences/</a></div></div><br /><div><strong>To: </strong>sebas, graesslin<br /><strong>Cc: </strong>plasma-devel, Plasma, sebas<br /></div>