jtamate added a comment.

  I guess this is a Qt bug.
  
    qint64 QDeadlineTimer::remainingTime() const Q_DECL_NOTHROW
    {
        qint64 ns = remainingTimeNSecs();
        return ns <= 0 ? ns : (ns + 999999) / (1000 * 1000);
    }
  
  Shouldn't it be:
  
    return ns <= 0 ? **0** : (ns + 999999) / (1000 * 1000);

REPOSITORY
  R271 KDBusAddons

REVISION DETAIL
  https://phabricator.kde.org/D14302

To: jtamate, dfaure, #frameworks
Cc: kde-frameworks-devel, michaelh, ngraham, bruns

Reply via email to