summaryrefslogtreecommitdiff
path: root/libopie
authortille <tille>2003-05-15 13:20:20 (UTC)
committer tille <tille>2003-05-15 13:20:20 (UTC)
commit7a5aff141f755ea67fccfee7ccc4fbbd3d3c0b94 (patch) (unidiff)
treee7503907e2ef21dae71141abb0954a5f3c43fe34 /libopie
parent5b0993378eb33f4bf576b91286ece24d49806ccf (diff)
downloadopie-7a5aff141f755ea67fccfee7ccc4fbbd3d3c0b94.zip
opie-7a5aff141f755ea67fccfee7ccc4fbbd3d3c0b94.tar.gz
opie-7a5aff141f755ea67fccfee7ccc4fbbd3d3c0b94.tar.bz2
how did this compile last time...? ;)
Diffstat (limited to 'libopie') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/pim/oevent.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/libopie/pim/oevent.cpp b/libopie/pim/oevent.cpp
index 2b138c0..83b191f 100644
--- a/libopie/pim/oevent.cpp
+++ b/libopie/pim/oevent.cpp
@@ -213,23 +213,23 @@ QString OEvent::timeZone()const {
213} 213}
214bool OEvent::match( const QRegExp& re )const { 214bool OEvent::match( const QRegExp& re )const {
215 if ( re.match( data->description ) != -1 ){ 215 if ( re.match( data->description ) != -1 ){
216 setLastHitField( DatebookDescription ); 216 setLastHitField( Qtopia::DatebookDescription );
217 return true; 217 return true;
218 } 218 }
219 if ( re.match( data->note ) != -1 ){ 219 if ( re.match( data->note ) != -1 ){
220 setLastHitField( Note ); 220 setLastHitField( Qtopia::Note );
221 return true; 221 return true;
222 } 222 }
223 if ( re.match( data->location ) != -1 ){ 223 if ( re.match( data->location ) != -1 ){
224 setLastHitField( Location ); 224 setLastHitField( Qtopia::Location );
225 return true; 225 return true;
226 } 226 }
227 if ( re.match( data->start.toString() ) != -1 ){ 227 if ( re.match( data->start.toString() ) != -1 ){
228 setLastHitField( StartDateTime ); 228 setLastHitField( Qtopia::StartDateTime );
229 return true; 229 return true;
230 } 230 }
231 if ( re.match( data->end.toString() ) != -1 ){ 231 if ( re.match( data->end.toString() ) != -1 ){
232 setLastHitField( EndDateTime ); 232 setLastHitField( Qtopia::EndDateTime );
233 return true; 233 return true;
234 } 234 }
235 return false; 235 return false;