summaryrefslogtreecommitdiffstats
path: root/src/borroweritem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/borroweritem.cpp')
-rw-r--r--src/borroweritem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/borroweritem.cpp b/src/borroweritem.cpp
index 13d82ca..798cbd5 100644
--- a/src/borroweritem.cpp
+++ b/src/borroweritem.cpp
@@ -32,7 +32,7 @@ int BorrowerItem::count() const {
Tellico::Data::EntryVec BorrowerItem::entries() const {
Data::EntryVec entries;
for(Data::LoanVec::ConstIterator loan = m_borrower->loans().begin(); loan != m_borrower->loans().end(); ++loan) {
- if(!entries.tqcontains(loan->entry())) {
+ if(!entries.contains(loan->entry())) {
entries.append(loan->entry());
}
}