author | zautrix <zautrix> | 2005-02-04 17:51:45 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-02-04 17:51:45 (UTC) |
commit | 4659ee80518c7d5108c21ba04a12a25eab783113 (patch) (side-by-side diff) | |
tree | 50a9b0e55ca68c58d6159b7617db0b2d19d9338a | |
parent | f4c3a3e3da57e957b920fe4662c6decd6764f0ee (diff) | |
download | kdepimpi-4659ee80518c7d5108c21ba04a12a25eab783113.zip kdepimpi-4659ee80518c7d5108c21ba04a12a25eab783113.tar.gz kdepimpi-4659ee80518c7d5108c21ba04a12a25eab783113.tar.bz2 |
nochn fix
-rw-r--r-- | korganizer/koagendaview.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/korganizer/koagendaview.cpp b/korganizer/koagendaview.cpp index 1908b1c..36c66ea 100644 --- a/korganizer/koagendaview.cpp +++ b/korganizer/koagendaview.cpp @@ -418,27 +418,28 @@ KOAgendaView::KOAgendaView(Calendar *cal,QWidget *parent,const char *name) : widebut = widebut*2; else widebut = (widebut*3) / 2; //mExpandButton->setSizePolicy( QSizePolicy( QSizePolicy::Fixed, // QSizePolicy::Fixed ) ); mExpandButton->setFixedSize( widebut, widebut); connect( mExpandButton, SIGNAL( clicked() ), SIGNAL( toggleExpand() ) ); mExpandButton->setFocusPolicy(NoFocus); mAllDayAgenda = new KOAgenda(1,mAllDayFrame); mAllDayAgenda->setFocusPolicy(NoFocus); QVBox *dummyAllDayRight = new QVBox(mAllDayFrame); - QPushButton *dummyAllDayRightB = new QPushButton(dummyAllDayRight); mDummyAllDayRightL = new QLabel ( dummyAllDayRight ); - + QPushButton *dummyAllDayRightB = new QPushButton(dummyAllDayRight); + new QLabel ( dummyAllDayRight ); + mDummyAllDayRightL->setSizePolicy( QSizePolicy( QSizePolicy::Minimum,QSizePolicy::Fixed ) ); dummyAllDayRightB->setFlat( true ); dummyAllDayRightB->setFocusPolicy(NoFocus); dummyAllDayRightB->setFixedHeight( (dummyAllDayRightB->sizeHint().height()/4)*3 ); QPopupMenu * wpo = new QPopupMenu (this); QPopupMenu * all = new QPopupMenu (this); //wpo->insertItem( i18n("W#"), 0 ); int first = 1; int i; for ( i = 1; i < 50; ++i ) { if ( !(i%10) ) { all->insertItem( i18n("Select week %1-%2" ).arg(first).arg( i-1) ,wpo ); |