summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/datebook/datebookevent.cpp
authorharlekin <harlekin>2002-09-18 15:03:24 (UTC)
committer harlekin <harlekin>2002-09-18 15:03:24 (UTC)
commitdd4b256d39e7a438a7d688471d257dd10a75d138 (patch) (side-by-side diff)
treed2e4a84f5b150ff0dc85b47a5ac9cee82d135cff /core/pim/today/plugins/datebook/datebookevent.cpp
parent6008e7d286293a87fca4ff43729bdfa66d700989 (diff)
downloadopie-dd4b256d39e7a438a7d688471d257dd10a75d138.zip
opie-dd4b256d39e7a438a7d688471d257dd10a75d138.tar.gz
opie-dd4b256d39e7a438a7d688471d257dd10a75d138.tar.bz2
use bool where bool is ment
Diffstat (limited to 'core/pim/today/plugins/datebook/datebookevent.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/datebook/datebookevent.cpp26
1 files changed, 15 insertions, 11 deletions
diff --git a/core/pim/today/plugins/datebook/datebookevent.cpp b/core/pim/today/plugins/datebook/datebookevent.cpp
index d4e8e1e..c37813b 100644
--- a/core/pim/today/plugins/datebook/datebookevent.cpp
+++ b/core/pim/today/plugins/datebook/datebookevent.cpp
@@ -22,9 +22,8 @@
DateBookEvent::DateBookEvent(const EffectiveEvent &ev,
QWidget* parent,
- int show_location,
- int show_notes,
- // int onlyLater,
+ bool show_location,
+ bool show_notes,
int maxCharClip,
const char* name,
WFlags fl) :
@@ -45,12 +44,12 @@ DateBookEvent::DateBookEvent(const EffectiveEvent &ev,
}
// include location or not
- if ( show_location == 1) {
+ if ( show_location ) {
msg += "<BR><i>" + (ev).location() + "</i>";
}
if ( ( TimeString::timeString( QTime( (ev).event().start().time() ) ) == "00:00" )
- && ( TimeString::timeString( QTime( (ev).event().end().time() ) ) == "23:59") ) {
+ && ( TimeString::timeString( QTime( (ev).event().end().time() ) ) == "23:59" ) ) {
msg += "<br>All day";
} else {
// start time of event
@@ -60,16 +59,21 @@ DateBookEvent::DateBookEvent(const EffectiveEvent &ev,
}
// include possible note or not
- if ( show_notes == 1) {
+ if ( show_notes ) {
msg += "<br> <i>note</i>:" +( (ev).notes() ).mid( 0, maxCharClip );
}
setText( msg );
connect( this, SIGNAL( clicked() ), this, SLOT( editMe() ) );
- setAlignment( int( QLabel::WordBreak | QLabel::AlignLeft ) );
+ // setAlignment( int( QLabel::WordBreak | QLabel::AlignLeft ) );
}
+/**
+ * AM/PM timestring conversion.
+ * @param tm the timestring
+ * @return formatted to am/pm is system is set to it
+ */
QString DateBookEvent::ampmTime( QTime tm ) {
QString s;
@@ -92,7 +96,7 @@ QString DateBookEvent::ampmTime( QTime tm ) {
}
-/*
+/**
* starts the edit dialog as known from datebook
*/
void DateBookEvent::editEventSlot( const Event &e ) {
@@ -108,11 +112,11 @@ void DateBookEvent::editEventSlot( const Event &e ) {
* launches datebook
*/
void DateBookEvent::startDatebook() {
- QCopEnvelope e("QPE/System", "execute(QString)");
- e << QString("datebook");
+ QCopEnvelope e( "QPE/System", "execute(QString)" );
+ e << QString( "datebook" );
}
void DateBookEvent::editMe() {
- emit editEvent(event.event());
+ emit editEvent( event.event() );
}