-rw-r--r-- | library/calendar.cpp | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/library/calendar.cpp b/library/calendar.cpp index 70e764c..d281a14 100644 --- a/library/calendar.cpp +++ b/library/calendar.cpp | |||
@@ -1,64 +1,59 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | #include "calendar.h" | 20 | #include "calendar.h" |
21 | #include "qpeglobal.h" | ||
21 | 22 | ||
22 | #include <qdatetime.h> | 23 | #include <qdatetime.h> |
23 | #include <qobject.h> | 24 | #include <qobject.h> |
24 | 25 | ||
26 | |||
25 | /*! \class Calendar calendar.html | 27 | /*! \class Calendar calendar.html |
26 | 28 | ||
27 | \brief The Calendar class provides programmers with an easy to calculate | 29 | \brief The Calendar class provides programmers with an easy to calculate |
28 | and get information about dates, months and years. | 30 | and get information about dates, months and years. |
29 | 31 | ||
30 | \ingroup qtopiaemb | 32 | \ingroup qtopiaemb |
31 | */ | 33 | */ |
32 | 34 | ||
33 | #ifdef Q_OS_MACX | 35 | static void never_called_tr_function_um_libqpe_ts_etwas_unter_zu_jubeln() QPE_SYMBOL_UNUSED; |
34 | #define ATTRIBUTE_UNUSED | ||
35 | #else | ||
36 | #define ATTRIBUTE_UNUSED __attribute__((unused)) | ||
37 | #endif | ||
38 | |||
39 | |||
40 | static void never_called_tr_function_um_libqpe_ts_etwas_unter_zu_jubeln() ATTRIBUTE_UNUSED; | ||
41 | static void never_called_tr_function_um_libqpe_ts_etwas_unter_zu_jubeln() { | 36 | static void never_called_tr_function_um_libqpe_ts_etwas_unter_zu_jubeln() { |
42 | (void)QObject::tr("Jan"); | 37 | (void)QObject::tr("Jan"); |
43 | (void)QObject::tr("Feb"); | 38 | (void)QObject::tr("Feb"); |
44 | (void)QObject::tr("Mar"); | 39 | (void)QObject::tr("Mar"); |
45 | (void)QObject::tr("Apr"); | 40 | (void)QObject::tr("Apr"); |
46 | (void)QObject::tr("May"); | 41 | (void)QObject::tr("May"); |
47 | (void)QObject::tr("Jun"); | 42 | (void)QObject::tr("Jun"); |
48 | (void)QObject::tr("Jul"); | 43 | (void)QObject::tr("Jul"); |
49 | (void)QObject::tr("Aug"); | 44 | (void)QObject::tr("Aug"); |
50 | (void)QObject::tr("Sep"); | 45 | (void)QObject::tr("Sep"); |
51 | (void)QObject::tr("Oct"); | 46 | (void)QObject::tr("Oct"); |
52 | (void)QObject::tr("Nov"); | 47 | (void)QObject::tr("Nov"); |
53 | (void)QObject::tr("Dec"); | 48 | (void)QObject::tr("Dec"); |
54 | (void)QObject::tr("Mon"); | 49 | (void)QObject::tr("Mon"); |
55 | (void)QObject::tr("Tue"); | 50 | (void)QObject::tr("Tue"); |
56 | (void)QObject::tr("Wed"); | 51 | (void)QObject::tr("Wed"); |
57 | (void)QObject::tr("Thu"); | 52 | (void)QObject::tr("Thu"); |
58 | (void)QObject::tr("Fri"); | 53 | (void)QObject::tr("Fri"); |
59 | (void)QObject::tr("Sat"); | 54 | (void)QObject::tr("Sat"); |
60 | (void)QObject::tr("Sun"); | 55 | (void)QObject::tr("Sun"); |
61 | } | 56 | } |
62 | 57 | ||
63 | 58 | ||
64 | 59 | ||