author | tille <tille> | 2003-05-15 13:20:20 (UTC) |
---|---|---|
committer | tille <tille> | 2003-05-15 13:20:20 (UTC) |
commit | 7a5aff141f755ea67fccfee7ccc4fbbd3d3c0b94 (patch) (side-by-side diff) | |
tree | e7503907e2ef21dae71141abb0954a5f3c43fe34 | |
parent | 5b0993378eb33f4bf576b91286ece24d49806ccf (diff) | |
download | opie-7a5aff141f755ea67fccfee7ccc4fbbd3d3c0b94.zip opie-7a5aff141f755ea67fccfee7ccc4fbbd3d3c0b94.tar.gz opie-7a5aff141f755ea67fccfee7ccc4fbbd3d3c0b94.tar.bz2 |
how did this compile last time...? ;)
-rw-r--r-- | libopie/pim/oevent.cpp | 10 | ||||
-rw-r--r-- | libopie2/opiepim/oevent.cpp | 10 |
2 files changed, 10 insertions, 10 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 @@ -204,41 +204,41 @@ void OEvent::setAllDay( bool allDay ) { if (allDay ) data->timezone = "UTC"; } void OEvent::setTimeZone( const QString& tz ) { changeOrModify(); data->timezone = tz; } QString OEvent::timeZone()const { if (data->isAllDay ) return QString::fromLatin1("UTC"); return data->timezone; } bool OEvent::match( const QRegExp& re )const { if ( re.match( data->description ) != -1 ){ - setLastHitField( DatebookDescription ); + setLastHitField( Qtopia::DatebookDescription ); return true; } if ( re.match( data->note ) != -1 ){ - setLastHitField( Note ); + setLastHitField( Qtopia::Note ); return true; } if ( re.match( data->location ) != -1 ){ - setLastHitField( Location ); + setLastHitField( Qtopia::Location ); return true; } if ( re.match( data->start.toString() ) != -1 ){ - setLastHitField( StartDateTime ); + setLastHitField( Qtopia::StartDateTime ); return true; } if ( re.match( data->end.toString() ) != -1 ){ - setLastHitField( EndDateTime ); + setLastHitField( Qtopia::EndDateTime ); return true; } return false; } QString OEvent::toRichText()const { QString text; if ( !description().isEmpty() ) { text += "<b>" + QObject::tr( "Description:") + "</b><br>"; text += Qtopia::escapeString(description() ). replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; } if ( startDateTime().isValid() ) { diff --git a/libopie2/opiepim/oevent.cpp b/libopie2/opiepim/oevent.cpp index 2b138c0..83b191f 100644 --- a/libopie2/opiepim/oevent.cpp +++ b/libopie2/opiepim/oevent.cpp @@ -204,41 +204,41 @@ void OEvent::setAllDay( bool allDay ) { if (allDay ) data->timezone = "UTC"; } void OEvent::setTimeZone( const QString& tz ) { changeOrModify(); data->timezone = tz; } QString OEvent::timeZone()const { if (data->isAllDay ) return QString::fromLatin1("UTC"); return data->timezone; } bool OEvent::match( const QRegExp& re )const { if ( re.match( data->description ) != -1 ){ - setLastHitField( DatebookDescription ); + setLastHitField( Qtopia::DatebookDescription ); return true; } if ( re.match( data->note ) != -1 ){ - setLastHitField( Note ); + setLastHitField( Qtopia::Note ); return true; } if ( re.match( data->location ) != -1 ){ - setLastHitField( Location ); + setLastHitField( Qtopia::Location ); return true; } if ( re.match( data->start.toString() ) != -1 ){ - setLastHitField( StartDateTime ); + setLastHitField( Qtopia::StartDateTime ); return true; } if ( re.match( data->end.toString() ) != -1 ){ - setLastHitField( EndDateTime ); + setLastHitField( Qtopia::EndDateTime ); return true; } return false; } QString OEvent::toRichText()const { QString text; if ( !description().isEmpty() ) { text += "<b>" + QObject::tr( "Description:") + "</b><br>"; text += Qtopia::escapeString(description() ). replace(QRegExp( "[\n]"), "<br>" ) + "<br>"; } if ( startDateTime().isValid() ) { |