-rw-r--r-- | library/calendar.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/library/calendar.cpp b/library/calendar.cpp index c7536c3..5199413 100644 --- a/library/calendar.cpp +++ b/library/calendar.cpp | |||
@@ -43,49 +43,48 @@ static void never_called_tr_function_um_libqpe_ts_etwas_unter_zu_jubeln() { | |||
43 | (void)QObject::tr("Aug"); | 43 | (void)QObject::tr("Aug"); |
44 | (void)QObject::tr("Sep"); | 44 | (void)QObject::tr("Sep"); |
45 | (void)QObject::tr("Oct"); | 45 | (void)QObject::tr("Oct"); |
46 | (void)QObject::tr("Nov"); | 46 | (void)QObject::tr("Nov"); |
47 | (void)QObject::tr("Dec"); | 47 | (void)QObject::tr("Dec"); |
48 | (void)QObject::tr("Mon"); | 48 | (void)QObject::tr("Mon"); |
49 | (void)QObject::tr("Tue"); | 49 | (void)QObject::tr("Tue"); |
50 | (void)QObject::tr("Wed"); | 50 | (void)QObject::tr("Wed"); |
51 | (void)QObject::tr("Thu"); | 51 | (void)QObject::tr("Thu"); |
52 | (void)QObject::tr("Fri"); | 52 | (void)QObject::tr("Fri"); |
53 | (void)QObject::tr("Sat"); | 53 | (void)QObject::tr("Sat"); |
54 | (void)QObject::tr("Sun"); | 54 | (void)QObject::tr("Sun"); |
55 | } | 55 | } |
56 | 56 | ||
57 | 57 | ||
58 | 58 | ||
59 | /*! | 59 | /*! |
60 | Returns the name of the month for \a m. | 60 | Returns the name of the month for \a m. |
61 | Equivalent to QDate::monthName(). | 61 | Equivalent to QDate::monthName(). |
62 | */ | 62 | */ |
63 | 63 | ||
64 | QString Calendar::nameOfMonth( int m ) | 64 | QString Calendar::nameOfMonth( int m ) |
65 | { | 65 | { |
66 | QDate d; | 66 | QDate d; |
67 | qDebug( d.monthName( m ) ); | ||
68 | return QObject::tr( d.monthName( m ) ); | 67 | return QObject::tr( d.monthName( m ) ); |
69 | } | 68 | } |
70 | 69 | ||
71 | /*! | 70 | /*! |
72 | Returns the name of the day for \a d. | 71 | Returns the name of the day for \a d. |
73 | Equivalent to QDate::dayName(). | 72 | Equivalent to QDate::dayName(). |
74 | */ | 73 | */ |
75 | QString Calendar::nameOfDay( int d ) | 74 | QString Calendar::nameOfDay( int d ) |
76 | { | 75 | { |
77 | QDate dt; | 76 | QDate dt; |
78 | return QObject::tr( dt.dayName( d ) ); | 77 | return QObject::tr( dt.dayName( d ) ); |
79 | } | 78 | } |
80 | 79 | ||
81 | /*! \obsolete */ | 80 | /*! \obsolete */ |
82 | QValueList<Calendar::Day> Calendar::daysOfMonth( int year, int month, | 81 | QValueList<Calendar::Day> Calendar::daysOfMonth( int year, int month, |
83 | bool startWithMonday ) | 82 | bool startWithMonday ) |
84 | { | 83 | { |
85 | QDate temp; | 84 | QDate temp; |
86 | temp.setYMD( year, month, 1 ); | 85 | temp.setYMD( year, month, 1 ); |
87 | int firstDay = temp.dayOfWeek(); | 86 | int firstDay = temp.dayOfWeek(); |
88 | int i; | 87 | int i; |
89 | QDate prev; | 88 | QDate prev; |
90 | QValueList<Day> days; | 89 | QValueList<Day> days; |
91 | 90 | ||