Bugzilla – Bug 504889
kwatch-2.3.3-252.47: undefined code
Last modified: 2009-05-18 19:04:17 UTC
I just tried to build Factory package kwatch-2.3.3-252.47 and the build said ./kwatch/klogwidget.cpp:478: warning: operation on '((KLogWidget*)this)->KLogWidget::m_msgi' may be undefined The source code is m_msgi = (++m_msgi % MAXKWATCHMSG); I agree with the compiler. Better code would be m_msgi = (m_msgi + 1) % MAXKWATCHMSG);
Please send patch to upstream project. *** This bug has been marked as a duplicate of bug 442933 ***