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 | 4 |
1 files changed, 3 insertions, 1 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 | |||
@@ -40,7 +40,8 @@ DatebookdayAllday::DatebookdayAllday(DateBookDB* db, QWidget* parent, const cha | |||
40 | m_MainFrame = new QFrame(viewport()); | 40 | m_MainFrame = new QFrame(viewport()); |
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 | ||
46 | datebookdayalldayLayout = new QVBoxLayout( m_MainFrame ); | 47 | datebookdayalldayLayout = new QVBoxLayout( m_MainFrame ); |
@@ -65,6 +66,7 @@ DatebookAlldayDisp* DatebookdayAllday::addEvent(const EffectiveEvent&ev) | |||
65 | { | 66 | { |
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 | ||