summaryrefslogtreecommitdiff
path: root/core/pim/datebook/modules/monthview
Unidiff
Diffstat (limited to 'core/pim/datebook/modules/monthview') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/datebook/modules/monthview/odatebookmonth.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/pim/datebook/modules/monthview/odatebookmonth.cpp b/core/pim/datebook/modules/monthview/odatebookmonth.cpp
index 5e2f1bb..d52a092 100644
--- a/core/pim/datebook/modules/monthview/odatebookmonth.cpp
+++ b/core/pim/datebook/modules/monthview/odatebookmonth.cpp
@@ -5,49 +5,48 @@
5** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. 5** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
6** 6**
7** This file is part of the Qtopia Environment. 7** This file is part of the Qtopia Environment.
8** 8**
9** This file may be distributed and/or modified under the terms of the 9** This file may be distributed and/or modified under the terms of the
10** GNU General Public License version 2 as published by the Free Software 10** GNU General Public License version 2 as published by the Free Software
11** Foundation and appearing in the file LICENSE.GPL included in the 11** Foundation and appearing in the file LICENSE.GPL included in the
12** packaging of this file. 12** packaging of this file.
13** 13**
14** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 14** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
15** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 15** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16** 16**
17** See http://www.trolltech.com/gpl/ for GPL licensing information. 17** See http://www.trolltech.com/gpl/ for GPL licensing information.
18** 18**
19** Contact info@trolltech.com if any conditions of this licensing are 19** Contact info@trolltech.com if any conditions of this licensing are
20** not clear to you. 20** not clear to you.
21** 21**
22**********************************************************************/ 22**********************************************************************/
23#include "odatebookmonth.h" 23#include "odatebookmonth.h"
24#include "datebooktypes.h" 24#include "datebooktypes.h"
25 25
26#include <qpe/config.h> 26#include <qpe/config.h>
27#include <qpe/datebookmonth.h> 27#include <qpe/datebookmonth.h>
28 28
29#include <qpe/resource.h>
30#include <qpe/qpeapplication.h> 29#include <qpe/qpeapplication.h>
31 30
32#include <qtoolbutton.h> 31#include <qtoolbutton.h>
33#include <qspinbox.h> 32#include <qspinbox.h>
34#include <qcombobox.h> 33#include <qcombobox.h>
35#include <qvaluestack.h> 34#include <qvaluestack.h>
36#include <qwhatsthis.h> 35#include <qwhatsthis.h>
37 36
38 37
39//--------------------------------------------------------------------------- 38//---------------------------------------------------------------------------
40 39
41class ODateBookMonthTablePrivate 40class ODateBookMonthTablePrivate
42{ 41{
43public: 42public:
44 ODateBookMonthTablePrivate() {}; 43 ODateBookMonthTablePrivate() {};
45 ~ODateBookMonthTablePrivate() { mMonthEvents.clear(); }; 44 ~ODateBookMonthTablePrivate() { mMonthEvents.clear(); };
46 45
47 QValueList<EffectiveEvent> mMonthEvents; 46 QValueList<EffectiveEvent> mMonthEvents;
48 bool onMonday; 47 bool onMonday;
49}; 48};
50 49
51ODateBookMonthTable::ODateBookMonthTable( QWidget *parent, const char *name, 50ODateBookMonthTable::ODateBookMonthTable( QWidget *parent, const char *name,
52 DateBookDBHoliday *newDb ) 51 DateBookDBHoliday *newDb )
53 : QTable( 6, 7, parent, name ), 52 : QTable( 6, 7, parent, name ),