From 8d3c7500d86e998ca016e8384ec0a2c68f28bf3b Mon Sep 17 00:00:00 2001 From: Tomasz Sowa Date: Tue, 22 Jun 2010 13:01:56 +0000 Subject: [PATCH] debugging info git-svn-id: svn://ttmath.org/publicrep/winix/trunk@612 e52654a7-88a9-db11-a3e9-0013d4bc506e --- templates/item.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/templates/item.cpp b/templates/item.cpp index 84c5439..cb297aa 100755 --- a/templates/item.cpp +++ b/templates/item.cpp @@ -515,11 +515,13 @@ void item_tab_dates_equal(Info & i) tm * ptm2 = &request.item_table[item_index].date_modification; i.res = ptm1->tm_year == ptm2->tm_year && - ptm1->tm_mon == ptm2->tm_mon && - ptm1->tm_mday == ptm2->tm_mday && - ptm1->tm_hour == ptm2->tm_hour && - ptm1->tm_min == ptm2->tm_min && - ptm1->tm_sec == ptm2->tm_sec; + ptm1->tm_mon == ptm2->tm_mon && + ptm1->tm_mday == ptm2->tm_mday && + ptm1->tm_hour == ptm2->tm_hour && + ptm1->tm_min == ptm2->tm_min && + ptm1->tm_sec == ptm2->tm_sec; + + i.out << ""; } }