author | zecke <zecke> | 2004-01-19 18:38:28 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-01-19 18:38:28 (UTC) |
commit | e32b27c9f5153dfb68221712ddca612315d6c4cb (patch) (unidiff) | |
tree | c43c130cf5dfc9355311890e576709ac25ae94d1 | |
parent | dc9c0fbaf91e3648e63e192a490c3ac033e6a7de (diff) | |
download | opie-e32b27c9f5153dfb68221712ddca612315d6c4cb.zip opie-e32b27c9f5153dfb68221712ddca612315d6c4cb.tar.gz opie-e32b27c9f5153dfb68221712ddca612315d6c4cb.tar.bz2 |
Fix bug 0001248 by disabling the horizontal scrollbar.
So we truncate by screen width
-rw-r--r-- | core/pim/datebook/datebookdayallday.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/core/pim/datebook/datebookdayallday.cpp b/core/pim/datebook/datebookdayallday.cpp index 6014eca..2294f3c 100644 --- a/core/pim/datebook/datebookdayallday.cpp +++ b/core/pim/datebook/datebookdayallday.cpp | |||
@@ -41,5 +41,6 @@ DatebookdayAllday::DatebookdayAllday(DateBookDB* db, QWidget* parent, const cha | |||
41 | m_MainFrame->setFrameStyle(QFrame::NoFrame|QFrame::Plain); | 41 | m_MainFrame->setFrameStyle(QFrame::NoFrame|QFrame::Plain); |
42 | setFrameStyle(QFrame::NoFrame|QFrame::Plain); | 42 | setFrameStyle(QFrame::NoFrame|QFrame::Plain); |
43 | setResizePolicy( QScrollView::AutoOneFit ); | 43 | setResizePolicy( QScrollView::Default ); |
44 | setHScrollBarMode( AlwaysOff ); | ||
44 | addChild(m_MainFrame); | 45 | addChild(m_MainFrame); |
45 | 46 | ||
@@ -66,7 +67,8 @@ DatebookAlldayDisp* DatebookdayAllday::addEvent(const EffectiveEvent&ev) | |||
66 | DatebookAlldayDisp * lb; | 67 | DatebookAlldayDisp * lb; |
67 | lb = new DatebookAlldayDisp(dateBook,ev,m_MainFrame,NULL); | 68 | lb = new DatebookAlldayDisp(dateBook,ev,m_MainFrame,NULL); |
69 | lb->show(); | ||
68 | datebookdayalldayLayout->addWidget(lb); | 70 | datebookdayalldayLayout->addWidget(lb); |
69 | subWidgets.append(lb); | 71 | subWidgets.append(lb); |
70 | 72 | ||
71 | connect(lb,SIGNAL(displayMe(const Event &)),lblDesc,SLOT(disp_event(const Event&))); | 73 | connect(lb,SIGNAL(displayMe(const Event &)),lblDesc,SLOT(disp_event(const Event&))); |
72 | ++item_count; | 74 | ++item_count; |
@@ -90,5 +92,5 @@ DatebookAlldayDisp::DatebookAlldayDisp(DateBookDB *db,const EffectiveEvent& ev, | |||
90 | setText(strDesc); | 92 | setText(strDesc); |
91 | setFrameStyle(QFrame::Raised|QFrame::Panel); | 93 | setFrameStyle(QFrame::Raised|QFrame::Panel); |
92 | 94 | ||
93 | int s = QFontMetrics(font()).height()+4; | 95 | int s = QFontMetrics(font()).height()+4; |
94 | setMaximumHeight( s ); | 96 | setMaximumHeight( s ); |