summaryrefslogtreecommitdiff
path: root/core/pim
authorzecke <zecke>2003-08-30 08:07:32 (UTC)
committer zecke <zecke>2003-08-30 08:07:32 (UTC)
commitd9b5fcc45b1fef5ac11ef549a47561c7382ff451 (patch) (side-by-side diff)
tree8f9e82d455e22be0285a5a8fc47e893b52c05871 /core/pim
parent18cae99f1deb15213074a8fb96f79eae4b0c5a43 (diff)
downloadopie-d9b5fcc45b1fef5ac11ef549a47561c7382ff451.zip
opie-d9b5fcc45b1fef5ac11ef549a47561c7382ff451.tar.gz
opie-d9b5fcc45b1fef5ac11ef549a47561c7382ff451.tar.bz2
do not rely on scrollbars beeing right
Diffstat (limited to 'core/pim') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook/datebookweek.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/core/pim/datebook/datebookweek.cpp b/core/pim/datebook/datebookweek.cpp
index ab7e963..dad1c3f 100644
--- a/core/pim/datebook/datebookweek.cpp
+++ b/core/pim/datebook/datebookweek.cpp
@@ -313,9 +313,10 @@ void DateBookWeekView::resizeEvent( QResizeEvent *e )
{
const int hourWidth = 20;
QScrollView::resizeEvent( e );
- int avail = width()-qApp->style().scrollBarExtent().width()-1;
- header->setGeometry( 0, 0, avail, header->sizeHint().height() );
- setMargins( 0, header->height(), 0, 0 );
+ int avail = visibleWidth();
+ header->setGeometry( leftMargin()+frameWidth()+frameRect().left() , frameWidth(),
+ visibleWidth(), header->sizeHint().height() );
+ setMargins( 0, header->sizeHint().height(), 0, 0 );
header->resizeSection( 0, hourWidth );
int sw = (avail - hourWidth) / 7;
for ( int i = 1; i < 7; i++ )