From 3c4a67b8b8d3fb554c5259f9f5ca35c5c826b13c Mon Sep 17 00:00:00 2001 From: tille Date: Wed, 14 May 2003 14:19:22 +0000 Subject: get the field where the hit was --- (limited to 'libopie2') diff --git a/libopie2/opiepim/ocontact.cpp b/libopie2/opiepim/ocontact.cpp index a38b62b..aeb69ee 100644 --- a/libopie2/opiepim/ocontact.cpp +++ b/libopie2/opiepim/ocontact.cpp @@ -958,6 +958,7 @@ bool OContact::match( const QRegExp &r ) const QMap::ConstIterator it; for ( it = mMap.begin(); it != mMap.end(); ++it ) { if ( (*it).find( r ) > -1 ) { + setLastHitField( it.key() ); match = true; break; } diff --git a/libopie2/opiepim/ocontact.h b/libopie2/opiepim/ocontact.h index 0e6cbd2..f79f0f3 100644 --- a/libopie2/opiepim/ocontact.h +++ b/libopie2/opiepim/ocontact.h @@ -214,7 +214,10 @@ public: void setEmails( const QString &v ); QString emails() const { return find( Qtopia::Emails ); } static int rtti(); - + int lastHitField() const {return m_lastHitField;}; +protected: + mutable int m_lastHitField; + void setLastHitField(int i) const { m_lastHitField = i; }; private: // The XML-Backend needs some access to the private functions -- cgit v0.9.0.2