ossp-pkg/as/as-gui/as_dataop.cpp 1.50 -> 1.51
--- as_dataop.cpp 2003/02/19 18:19:19 1.50
+++ as_dataop.cpp 2003/02/28 17:12:24 1.51
@@ -342,7 +342,8 @@
Qualistring Testuple = User + Guid + Rev + Date + Start;
Testuple += Finish + Amount + Account + Remark;
U32 Valcrc = Testuple.getCrc(); // Finally set the checksum to its new value
- m_pMaintable->setText(nIter, TITRAQ_IDXCRC, "0x" + QString::number(Valcrc, 16));
+ QString Crcstr = QString::number(Valcrc, 16).rightJustify(8, '0');
+ m_pMaintable->setText(nIter, TITRAQ_IDXCRC, "0x" + Crcstr);
}
}
else // if isEmpty()
|
|