OSDN Git Service

Automatically align underspecified tasks boundaries on project boundaries when possible.
[tjqt4port/tj2qt4.git] / taskjuggler / TransactionList.cpp
1 /*
2  * TransactionList.cpp - TaskJuggler
3  *
4  * Copyright (c) 2001, 2002, 2003, 2004 by Chris Schlaeger <cs@kde.org>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of version 2 of the GNU General Public License as
8  * published by the Free Software Foundation.
9  *
10  * $Id$
11  */
12 #include "TransactionList.h"
13
14 int
15 TransactionList::compareItems(QCollection::Item i1, QCollection::Item i2)
16 {
17     Transaction* t1 = static_cast<Transaction*>(i1);
18     Transaction* t2 = static_cast<Transaction*>(i2);
19
20     if (t1->date == t2->date)
21         return 0;
22     else
23         return t2->date - t1->date;
24 }
25