author | leseb <leseb> | 2002-06-05 19:04:52 (UTC) |
---|---|---|
committer | leseb <leseb> | 2002-06-05 19:04:52 (UTC) |
commit | 7e61a0450682589c5ec5a8009df3b6ec36dbb5a0 (patch) (unidiff) | |
tree | 7888efc836878563834513a94af13969f1edc433 /library/datebookmonth.cpp | |
parent | 91398d550495cb82445457b59e472a58ad0a296a (diff) | |
download | opie-7e61a0450682589c5ec5a8009df3b6ec36dbb5a0.zip opie-7e61a0450682589c5ec5a8009df3b6ec36dbb5a0.tar.gz opie-7e61a0450682589c5ec5a8009df3b6ec36dbb5a0.tar.bz2 |
Correction of bug #394
-rw-r--r-- | library/datebookmonth.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/datebookmonth.cpp b/library/datebookmonth.cpp index b2074e6..f4b3e6b 100644 --- a/library/datebookmonth.cpp +++ b/library/datebookmonth.cpp | |||
@@ -49,17 +49,17 @@ DateBookMonthHeader::DateBookMonthHeader( QWidget *parent, const char *name ) | |||
49 | back->setPixmap( Resource::loadPixmap( "back" ) ); | 49 | back->setPixmap( Resource::loadPixmap( "back" ) ); |
50 | back->setAutoRaise( TRUE ); | 50 | back->setAutoRaise( TRUE ); |
51 | back->setFixedSize( back->sizeHint() ); | 51 | back->setFixedSize( back->sizeHint() ); |
52 | 52 | ||
53 | month = new QComboBox( FALSE, this ); | 53 | month = new QComboBox( FALSE, this ); |
54 | for ( int i = 0; i < 12; ++i ) | 54 | for ( int i = 0; i < 12; ++i ) |
55 | month->insertItem( Calendar::nameOfMonth( i + 1 ) ); | 55 | month->insertItem( Calendar::nameOfMonth( i + 1 ) ); |
56 | 56 | ||
57 | year = new QSpinBox( 1970, 2037, 1, this ); | 57 | year = new QSpinBox( 1752, 8000, 1, this ); |
58 | 58 | ||
59 | next = new QToolButton( this ); | 59 | next = new QToolButton( this ); |
60 | next->setFocusPolicy(NoFocus); | 60 | next->setFocusPolicy(NoFocus); |
61 | next->setPixmap( Resource::loadPixmap( "forward" ) ); | 61 | next->setPixmap( Resource::loadPixmap( "forward" ) ); |
62 | next->setAutoRaise( TRUE ); | 62 | next->setAutoRaise( TRUE ); |
63 | next->setFixedSize( next->sizeHint() ); | 63 | next->setFixedSize( next->sizeHint() ); |
64 | 64 | ||
65 | end = new QToolButton( this ); | 65 | end = new QToolButton( this ); |