diff options
Diffstat (limited to 'src/translators/tellicoimporter.cpp')
| -rw-r--r-- | src/translators/tellicoimporter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/translators/tellicoimporter.cpp b/src/translators/tellicoimporter.cpp index d722c0c..c485966 100644 --- a/src/translators/tellicoimporter.cpp +++ b/src/translators/tellicoimporter.cpp @@ -744,11 +744,11 @@ void TellicoImporter::readBorrower(const TQDomElement& elem_) { TQDate loanDate, dueDate; TQString s = e.attribute(TQString::fromLatin1("loanDate")); if(!s.isEmpty()) { - loanDate = TQDate::fromString(s, Qt::ISODate); + loanDate = TQDate::fromString(s, TQt::ISODate); } s = e.attribute(TQString::fromLatin1("dueDate")); if(!s.isEmpty()) { - dueDate = TQDate::fromString(s, Qt::ISODate); + dueDate = TQDate::fromString(s, TQt::ISODate); } Data::LoanPtr loan = new Data::Loan(entry, loanDate, dueDate, e.text()); loan->setUID(uid); |
