summaryrefslogtreecommitdiffabout
path: root/korganizer/calendarview.cpp
Side-by-side diff
Diffstat (limited to 'korganizer/calendarview.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/calendarview.cpp16
1 files changed, 13 insertions, 3 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp
index 776cdd3..623cf9d 100644
--- a/korganizer/calendarview.cpp
+++ b/korganizer/calendarview.cpp
@@ -446,5 +446,8 @@ void CalendarView::init()
//QBoxLayout * leftFrameLayout;
- mDateScrollBar = new QScrollBar ( 0, 364, 1,30, 200,QScrollBar::Horizontal, this );
topLayout->addWidget( mMainFrame );
- topLayout->addWidget( mDateScrollBar );
+#ifdef DESKTOP_VERSION
+ mDateScrollBar = new QScrollBar ( 0, 364, 1,30, 200,QScrollBar::Horizontal, this );
+ topLayout->addWidget( mDateScrollBar );
+ connect( mDateScrollBar, SIGNAL( valueChanged ( int ) ),this, SLOT( scrollBarValue( int )) );
+#endif
//mainBoxLayout->addWidget (mLeftFrame);
@@ -471,3 +474,3 @@ void CalendarView::init()
connect( mCalEditView, SIGNAL( needsUpdate() ),this, SLOT( updateUnmanagedViews()) );
- connect( mDateScrollBar, SIGNAL( valueChanged ( int ) ),this, SLOT( scrollBarValue( int )) );
+
mTodoList->setNavigator( mNavigator );
@@ -651,3 +654,5 @@ void CalendarView::setScrollBarStep(int val )
{
+#ifdef DESKTOP_VERSION
mDateScrollBar->setLineStep ( val );
+#endif
}
@@ -655,2 +660,4 @@ void CalendarView::scrollBarValue(int val )
{
+#ifdef DESKTOP_VERSION
+ if ( QApplication::desktop()->width() < 800 ) return;
static bool block = false;
@@ -670,2 +677,3 @@ void CalendarView::scrollBarValue(int val )
block = false;
+#endif
@@ -2586,3 +2594,5 @@ void CalendarView::updateView(const QDate &start, const QDate &end)
{
+#ifdef DESKTOP_VERSION
mDateScrollBar->setValue( start.dayOfYear()-1);
+#endif
mTodoList->updateView();