summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/pim/oevent.cpp10
-rw-r--r--libopie2/opiepim/oevent.cpp10
2 files changed, 10 insertions, 10 deletions
diff --git a/libopie/pim/oevent.cpp b/libopie/pim/oevent.cpp
index b731c8a..cda12f9 100644
--- a/libopie/pim/oevent.cpp
+++ b/libopie/pim/oevent.cpp
@@ -212,15 +212,15 @@ QString OEvent::timeZone()const {
return data->timezone;
}
bool OEvent::match( const QRegExp& re )const {
- if (data->description.contains( re ) )
+ if ( re.match( data->description ) != -1 )
return true;
- if ( data->note.contains( re ) )
+ if ( re.match( data->note ) != -1 )
return true;
- if ( data->location.contains( re ) )
+ if ( re.match( data->location ) != -1 )
return true;
- if ( data->start.toString().contains( re ) )
+ if ( re.match( data->start.toString() ) != -1 )
return true;
- if ( data->end.toString().contains( re ) )
+ if ( re.match( data->end.toString() ) != -1 )
return true;
return false;
}
diff --git a/libopie2/opiepim/oevent.cpp b/libopie2/opiepim/oevent.cpp
index b731c8a..cda12f9 100644
--- a/libopie2/opiepim/oevent.cpp
+++ b/libopie2/opiepim/oevent.cpp
@@ -212,15 +212,15 @@ QString OEvent::timeZone()const {
return data->timezone;
}
bool OEvent::match( const QRegExp& re )const {
- if (data->description.contains( re ) )
+ if ( re.match( data->description ) != -1 )
return true;
- if ( data->note.contains( re ) )
+ if ( re.match( data->note ) != -1 )
return true;
- if ( data->location.contains( re ) )
+ if ( re.match( data->location ) != -1 )
return true;
- if ( data->start.toString().contains( re ) )
+ if ( re.match( data->start.toString() ) != -1 )
return true;
- if ( data->end.toString().contains( re ) )
+ if ( re.match( data->end.toString() ) != -1 )
return true;
return false;
}