diff options
Diffstat (limited to 'src/filter.cpp')
-rw-r--r-- | src/filter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filter.cpp b/src/filter.cpp index b1c522b..a18d341 100644 --- a/src/filter.cpp +++ b/src/filter.cpp @@ -106,7 +106,7 @@ bool FilterRule::matchesRegExp(Data::EntryPtr entry_) const { /*******************************************************/ -Filter::Filter(const Filter& other_) : TQPtrList<FilterRule>(), KShared(), m_op(other_.op()), m_name(other_.name()) { +Filter::Filter(const Filter& other_) : TQPtrList<FilterRule>(), TDEShared(), m_op(other_.op()), m_name(other_.name()) { for(TQPtrListIterator<FilterRule> it(other_); it.current(); ++it) { append(new FilterRule(*it.current())); } |