kdeui: update NET::timestampCompare() and NET::timestampDiff() documentation

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2022-11-16 04:07:10 +02:00
parent a4a374b1f2
commit a846ee0719

View file

@ -729,13 +729,11 @@ public:
/**
Compares two X timestamps, taking into account wrapping and 64bit architectures.
Return value is like with strcmp(), 0 for equal, -1 for time1 < time2, 1 for time1 > time2.
@deprecated Moved to KXUtils namespace.
*/
static int timestampCompare( Time time1, Time time2 );
/**
Returns a difference of two X timestamps, time2 - time1, where time2 must be later than time1,
as returned by timestampCompare().
@deprecated Moved to KXUtils namespace.
*/
static Time timestampDiff( Time time1, Time time2 );