summaryrefslogtreecommitdiff
path: root/core
Unidiff
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/today.cpp10
-rw-r--r--core/pim/today/todaybase.cpp1
2 files changed, 6 insertions, 5 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp
index 4ec690c..83d8601 100644
--- a/core/pim/today/today.cpp
+++ b/core/pim/today/today.cpp
@@ -367,17 +367,19 @@ void Today::startConfig() {
367void Today::refresh() { 367void Today::refresh() {
368 368
369 init(); 369 init();
370 370
371 QValueList<TodayPlugin>::Iterator it; 371 QValueList<TodayPlugin>::Iterator it;
372 for ( it = pluginList.begin(); it != pluginList.end(); ++it ) { 372 for ( it = pluginList.begin(); it != pluginList.end(); ++it ) {
373 if ( !(*it).excludeRefresh ) { 373 if ( !(*it).excludeRefresh ) {
374 (*it).guiPart->refresh(); 374 (*it).guiPart->refresh();
375 qDebug( "refresh" ); 375 layout->addWidget( (*it).guiBox );
376 } 376 qDebug( "refresh" );
377 }
377 } 378 }
379 layout->addStretch(0);
378} 380}
379 381
380void Today::startApplication() { 382void Today::startApplication() {
381 QCopEnvelope e( "QPE/System", "execute(QString)" ); 383 QCopEnvelope e( "QPE/System", "execute(QString)" );
382 e << QString( sender()->name() ); 384 e << QString( sender()->name() );
383} 385}
diff --git a/core/pim/today/todaybase.cpp b/core/pim/today/todaybase.cpp
index 7beed34..41daa7d 100644
--- a/core/pim/today/todaybase.cpp
+++ b/core/pim/today/todaybase.cpp
@@ -50,13 +50,12 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags )
50// today logo 50// today logo
51 Frame = new QLabel( this, "Frame" ); 51 Frame = new QLabel( this, "Frame" );
52 Frame->setPalette( pal2 ); 52 Frame->setPalette( pal2 );
53 Frame->setFrameShape( QFrame::StyledPanel ); 53 Frame->setFrameShape( QFrame::StyledPanel );
54 Frame->setFrameShadow( QFrame::Raised ); 54 Frame->setFrameShadow( QFrame::Raised );
55 Frame->setLineWidth( 0 ); 55 Frame->setLineWidth( 0 );
56 Frame->setMaximumHeight( 50 );
57 56
58 QHBoxLayout *frameLayout = new QHBoxLayout( Frame ); 57 QHBoxLayout *frameLayout = new QHBoxLayout( Frame );
59 QVBox *box1 = new QVBox( Frame ); 58 QVBox *box1 = new QVBox( Frame );
60 box1->setMinimumWidth( 100 ); 59 box1->setMinimumWidth( 100 );
61 // Today text 60 // Today text
62 TodayLabel = new QLabel( box1, "TodayText" ); 61 TodayLabel = new QLabel( box1, "TodayText" );