diff options
Diffstat (limited to 'src/commands/modifyentries.cpp')
-rw-r--r-- | src/commands/modifyentries.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/modifyentries.cpp b/src/commands/modifyentries.cpp index 9d8712a..7317314 100644 --- a/src/commands/modifyentries.cpp +++ b/src/commands/modifyentries.cpp @@ -44,7 +44,7 @@ void ModifyEntries::execute() { } // loans expose a field named "loaned", and the user might modify that without // checking in the loan, so verify that. Heavy-handed, yes... - const TQString loaned = TQString::tqfromLatin1("loaned"); + const TQString loaned = TQString::fromLatin1("loaned"); bool hasLoanField = m_coll->hasField(loaned); for(Data::EntryVecIt entry = m_entries.begin(); hasLoanField && entry != m_entries.end(); ++entry) { if(entry->field(loaned).isEmpty()) { |