author | ulf69 <ulf69> | 2004-06-29 06:30:43 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-06-29 06:30:43 (UTC) |
commit | 2d5b376ae1329d82d1ce1947b972b30866abff9b (patch) (unidiff) | |
tree | 972d674c2c3939ed60c5a4a0c0ae33328ee47674 /libkdepim | |
parent | 5bfd50da45591c581a7703d442b250e6e5294d9f (diff) | |
download | kdepimpi-2d5b376ae1329d82d1ce1947b972b30866abff9b.zip kdepimpi-2d5b376ae1329d82d1ce1947b972b30866abff9b.tar.gz kdepimpi-2d5b376ae1329d82d1ce1947b972b30866abff9b.tar.bz2 |
removed references to moc files
-rw-r--r-- | libkdepim/categoryeditdialog.cpp | 2 | ||||
-rw-r--r-- | libkdepim/categoryeditdialog_base.cpp | 2 | ||||
-rw-r--r-- | libkdepim/categoryselectdialog.cpp | 2 | ||||
-rw-r--r-- | libkdepim/categoryselectdialog_base.cpp | 2 | ||||
-rw-r--r-- | libkdepim/kdateedit.cpp | 2 | ||||
-rw-r--r-- | libkdepim/kdatepicker.cpp | 2 | ||||
-rw-r--r-- | libkdepim/kprefsdialog.cpp | 2 | ||||
-rw-r--r-- | libkdepim/libkdepimE.pro | 3 |
8 files changed, 9 insertions, 8 deletions
diff --git a/libkdepim/categoryeditdialog.cpp b/libkdepim/categoryeditdialog.cpp index 87172c1..f719c31 100644 --- a/libkdepim/categoryeditdialog.cpp +++ b/libkdepim/categoryeditdialog.cpp | |||
@@ -119,17 +119,17 @@ void CategoryEditDialog::slotApply() | |||
119 | while(item) { | 119 | while(item) { |
120 | mPrefs->mCustomCategories.append(item->text(0)); | 120 | mPrefs->mCustomCategories.append(item->text(0)); |
121 | item = item->nextSibling(); | 121 | item = item->nextSibling(); |
122 | } | 122 | } |
123 | mPrefs->writeConfig(); | 123 | mPrefs->writeConfig(); |
124 | 124 | ||
125 | emit categoryConfigChanged(); | 125 | emit categoryConfigChanged(); |
126 | } | 126 | } |
127 | 127 | ||
128 | void CategoryEditDialog::editItem(QListViewItem *item) | 128 | void CategoryEditDialog::editItem(QListViewItem *item) |
129 | { | 129 | { |
130 | mEdit->setText(item->text(0)); | 130 | mEdit->setText(item->text(0)); |
131 | mButtonRemove->setEnabled(true); | 131 | mButtonRemove->setEnabled(true); |
132 | mButtonModify->setEnabled(true); | 132 | mButtonModify->setEnabled(true); |
133 | } | 133 | } |
134 | 134 | ||
135 | #include "categoryeditdialog.moc" | 135 | //US #include "categoryeditdialog.moc" |
diff --git a/libkdepim/categoryeditdialog_base.cpp b/libkdepim/categoryeditdialog_base.cpp index ac99190..2390bbd 100644 --- a/libkdepim/categoryeditdialog_base.cpp +++ b/libkdepim/categoryeditdialog_base.cpp | |||
@@ -138,17 +138,17 @@ void CategoryEditDialog_base::modify() | |||
138 | 138 | ||
139 | void CategoryEditDialog_base::slotApply() | 139 | void CategoryEditDialog_base::slotApply() |
140 | { | 140 | { |
141 | qWarning( "CategoryEditDialog_base::slotApply(): Not implemented yet" ); | 141 | qWarning( "CategoryEditDialog_base::slotApply(): Not implemented yet" ); |
142 | } | 142 | } |
143 | 143 | ||
144 | void CategoryEditDialog_base::remove() | 144 | void CategoryEditDialog_base::remove() |
145 | { | 145 | { |
146 | qWarning( "CategoryEditDialog_base::remove(): Not implemented yet" ); | 146 | qWarning( "CategoryEditDialog_base::remove(): Not implemented yet" ); |
147 | } | 147 | } |
148 | 148 | ||
149 | void CategoryEditDialog_base::slotOk() | 149 | void CategoryEditDialog_base::slotOk() |
150 | { | 150 | { |
151 | qWarning( "CategoryEditDialog_base::slotOk(): Not implemented yet" ); | 151 | qWarning( "CategoryEditDialog_base::slotOk(): Not implemented yet" ); |
152 | } | 152 | } |
153 | 153 | ||
154 | #include "categoryeditdialog_base.moc" | 154 | //US #include "categoryeditdialog_base.moc" |
diff --git a/libkdepim/categoryselectdialog.cpp b/libkdepim/categoryselectdialog.cpp index 7b0aced..943d35c 100644 --- a/libkdepim/categoryselectdialog.cpp +++ b/libkdepim/categoryselectdialog.cpp | |||
@@ -157,17 +157,17 @@ void CategorySelectDialog::clear() | |||
157 | void CategorySelectDialog::updateCategoryConfig() | 157 | void CategorySelectDialog::updateCategoryConfig() |
158 | { | 158 | { |
159 | QStringList selected; | 159 | QStringList selected; |
160 | QCheckListItem *item = (QCheckListItem *)mCategories->firstChild(); | 160 | QCheckListItem *item = (QCheckListItem *)mCategories->firstChild(); |
161 | while (item) { | 161 | while (item) { |
162 | if (item->isOn()) { | 162 | if (item->isOn()) { |
163 | selected.append(item->text()); | 163 | selected.append(item->text()); |
164 | } | 164 | } |
165 | item = (QCheckListItem *)item->nextSibling(); | 165 | item = (QCheckListItem *)item->nextSibling(); |
166 | } | 166 | } |
167 | 167 | ||
168 | setCategories(); | 168 | setCategories(); |
169 | 169 | ||
170 | setSelected(selected); | 170 | setSelected(selected); |
171 | } | 171 | } |
172 | 172 | ||
173 | #include "categoryselectdialog.moc" | 173 | //#include "categoryselectdialog.moc" |
diff --git a/libkdepim/categoryselectdialog_base.cpp b/libkdepim/categoryselectdialog_base.cpp index 5e5fa72..3f050cf 100644 --- a/libkdepim/categoryselectdialog_base.cpp +++ b/libkdepim/categoryselectdialog_base.cpp | |||
@@ -112,17 +112,17 @@ void CategorySelectDialog_base::languageChange() | |||
112 | 112 | ||
113 | void CategorySelectDialog_base::clear() | 113 | void CategorySelectDialog_base::clear() |
114 | { | 114 | { |
115 | qWarning( "CategorySelectDialog_base::clear(): Not implemented yet" ); | 115 | qWarning( "CategorySelectDialog_base::clear(): Not implemented yet" ); |
116 | } | 116 | } |
117 | 117 | ||
118 | void CategorySelectDialog_base::slotApply() | 118 | void CategorySelectDialog_base::slotApply() |
119 | { | 119 | { |
120 | qWarning( "CategorySelectDialog_base::slotApply(): Not implemented yet" ); | 120 | qWarning( "CategorySelectDialog_base::slotApply(): Not implemented yet" ); |
121 | } | 121 | } |
122 | 122 | ||
123 | void CategorySelectDialog_base::slotOk() | 123 | void CategorySelectDialog_base::slotOk() |
124 | { | 124 | { |
125 | qWarning( "CategorySelectDialog_base::slotOk(): Not implemented yet" ); | 125 | qWarning( "CategorySelectDialog_base::slotOk(): Not implemented yet" ); |
126 | } | 126 | } |
127 | 127 | ||
128 | #include "categoryselectdialog_base.moc" | 128 | //US#include "categoryselectdialog_base.moc" |
diff --git a/libkdepim/kdateedit.cpp b/libkdepim/kdateedit.cpp index 60bd2cf..5fb948a 100644 --- a/libkdepim/kdateedit.cpp +++ b/libkdepim/kdateedit.cpp | |||
@@ -25,33 +25,33 @@ | |||
25 | #include <qapplication.h> | 25 | #include <qapplication.h> |
26 | #include <qevent.h> | 26 | #include <qevent.h> |
27 | #include <qlineedit.h> | 27 | #include <qlineedit.h> |
28 | #include <qpixmap.h> | 28 | #include <qpixmap.h> |
29 | #include <qpushbutton.h> | 29 | #include <qpushbutton.h> |
30 | 30 | ||
31 | #include <kdatepicker.h> | 31 | #include <kdatepicker.h> |
32 | #include <kdebug.h> | 32 | #include <kdebug.h> |
33 | #include <kglobal.h> | 33 | #include <kglobal.h> |
34 | #include <kiconloader.h> | 34 | #include <kiconloader.h> |
35 | #include <klocale.h> | 35 | #include <klocale.h> |
36 | #include <kmessagebox.h> | 36 | #include <kmessagebox.h> |
37 | #include <knotifyclient.h> | 37 | #include <knotifyclient.h> |
38 | #include <qpalette.h> | 38 | #include <qpalette.h> |
39 | 39 | ||
40 | #include "kdateedit.h" | 40 | #include "kdateedit.h" |
41 | #include "kdateedit.moc" | 41 | //#include "kdateedit.moc" |
42 | 42 | ||
43 | KDateEdit::KDateEdit(QWidget *parent, const char *name, bool withoutDP ) | 43 | KDateEdit::KDateEdit(QWidget *parent, const char *name, bool withoutDP ) |
44 | : QHBox(parent, name) | 44 | : QHBox(parent, name) |
45 | { | 45 | { |
46 | dateFormShort = true; | 46 | dateFormShort = true; |
47 | withoutDp = withoutDP; | 47 | withoutDp = withoutDP; |
48 | mDateEdit = new QLineEdit(this); | 48 | mDateEdit = new QLineEdit(this); |
49 | mDateEdit->setText(KGlobal::locale()->formatDate(QDate::currentDate(),dateFormShort)); | 49 | mDateEdit->setText(KGlobal::locale()->formatDate(QDate::currentDate(),dateFormShort)); |
50 | setFocusProxy(mDateEdit); | 50 | setFocusProxy(mDateEdit); |
51 | mDateEdit->installEventFilter(this); | 51 | mDateEdit->installEventFilter(this); |
52 | 52 | ||
53 | // Highlight Background and Textcolor | 53 | // Highlight Background and Textcolor |
54 | QPalette palette = QWidget::palette(); | 54 | QPalette palette = QWidget::palette(); |
55 | unsigned char red, green, blue; | 55 | unsigned char red, green, blue; |
56 | red = palette.color( QPalette::Normal , QColorGroup::Background ).red() - 10; | 56 | red = palette.color( QPalette::Normal , QColorGroup::Background ).red() - 10; |
57 | green = palette.color( QPalette::Normal , QColorGroup::Background ).green() - 10; | 57 | green = palette.color( QPalette::Normal , QColorGroup::Background ).green() - 10; |
diff --git a/libkdepim/kdatepicker.cpp b/libkdepim/kdatepicker.cpp index 6e5ec0f..3fe139c 100644 --- a/libkdepim/kdatepicker.cpp +++ b/libkdepim/kdatepicker.cpp | |||
@@ -22,33 +22,33 @@ | |||
22 | #include <kglobal.h> | 22 | #include <kglobal.h> |
23 | #include <kapplication.h> | 23 | #include <kapplication.h> |
24 | #include <klocale.h> | 24 | #include <klocale.h> |
25 | #include <kiconloader.h> | 25 | #include <kiconloader.h> |
26 | #include <qframe.h> | 26 | #include <qframe.h> |
27 | #include <qpainter.h> | 27 | #include <qpainter.h> |
28 | #include <qdialog.h> | 28 | #include <qdialog.h> |
29 | #include <qtoolbutton.h> | 29 | #include <qtoolbutton.h> |
30 | #include <qfont.h> | 30 | #include <qfont.h> |
31 | #include <qapplication.h> | 31 | #include <qapplication.h> |
32 | #include <qlineedit.h> | 32 | #include <qlineedit.h> |
33 | #include <qvalidator.h> | 33 | #include <qvalidator.h> |
34 | #include <kdebug.h> | 34 | #include <kdebug.h> |
35 | #include <knotifyclient.h> | 35 | #include <knotifyclient.h> |
36 | #include "kdatetbl.h" | 36 | #include "kdatetbl.h" |
37 | #include "kdateedit.h" | 37 | #include "kdateedit.h" |
38 | #include "kdatepicker.moc" | 38 | //#include "kdatepicker.moc" |
39 | 39 | ||
40 | 40 | ||
41 | KDatePicker::KDatePicker(QWidget *parent, QDate dt, const char *name) | 41 | KDatePicker::KDatePicker(QWidget *parent, QDate dt, const char *name) |
42 | : QFrame(parent,name), | 42 | : QFrame(parent,name), |
43 | yearForward(new QToolButton(this)), | 43 | yearForward(new QToolButton(this)), |
44 | yearBackward(new QToolButton(this)), | 44 | yearBackward(new QToolButton(this)), |
45 | monthForward(new QToolButton(this)), | 45 | monthForward(new QToolButton(this)), |
46 | monthBackward(new QToolButton(this)), | 46 | monthBackward(new QToolButton(this)), |
47 | selectMonth(new QToolButton(this)), | 47 | selectMonth(new QToolButton(this)), |
48 | selectYear(new QToolButton(this)), | 48 | selectYear(new QToolButton(this)), |
49 | //line(new QLineEdit(this)), | 49 | //line(new QLineEdit(this)), |
50 | val(new KDateValidator(this)) | 50 | val(new KDateValidator(this)) |
51 | //table(new KDateTable(this)), | 51 | //table(new KDateTable(this)), |
52 | //fontsize(1) | 52 | //fontsize(1) |
53 | { | 53 | { |
54 | // ----- | 54 | // ----- |
diff --git a/libkdepim/kprefsdialog.cpp b/libkdepim/kprefsdialog.cpp index 3a39ea9..205c526 100644 --- a/libkdepim/kprefsdialog.cpp +++ b/libkdepim/kprefsdialog.cpp | |||
@@ -42,33 +42,33 @@ | |||
42 | #include <qradiobutton.h> | 42 | #include <qradiobutton.h> |
43 | #include <qpushbutton.h> | 43 | #include <qpushbutton.h> |
44 | #include <qapplication.h> | 44 | #include <qapplication.h> |
45 | 45 | ||
46 | #include <kcolorbutton.h> | 46 | #include <kcolorbutton.h> |
47 | #include <kdebug.h> | 47 | #include <kdebug.h> |
48 | #include <klocale.h> | 48 | #include <klocale.h> |
49 | #include <kglobal.h> | 49 | #include <kglobal.h> |
50 | #include <kfontdialog.h> | 50 | #include <kfontdialog.h> |
51 | #include <kmessagebox.h> | 51 | #include <kmessagebox.h> |
52 | #include <kcolordialog.h> | 52 | #include <kcolordialog.h> |
53 | #include <kiconloader.h> | 53 | #include <kiconloader.h> |
54 | 54 | ||
55 | #include "kprefs.h" | 55 | #include "kprefs.h" |
56 | 56 | ||
57 | #include "kprefsdialog.h" | 57 | #include "kprefsdialog.h" |
58 | #include "kprefsdialog.moc" | 58 | //#include "kprefsdialog.moc" |
59 | 59 | ||
60 | KPrefsWidBool::KPrefsWidBool(const QString &text,bool *reference, | 60 | KPrefsWidBool::KPrefsWidBool(const QString &text,bool *reference, |
61 | QWidget *parent) | 61 | QWidget *parent) |
62 | { | 62 | { |
63 | mReference = reference; | 63 | mReference = reference; |
64 | 64 | ||
65 | mCheck = new QCheckBox(text,parent); | 65 | mCheck = new QCheckBox(text,parent); |
66 | } | 66 | } |
67 | 67 | ||
68 | void KPrefsWidBool::readConfig() | 68 | void KPrefsWidBool::readConfig() |
69 | { | 69 | { |
70 | mCheck->setChecked(*mReference); | 70 | mCheck->setChecked(*mReference); |
71 | } | 71 | } |
72 | 72 | ||
73 | void KPrefsWidBool::writeConfig() | 73 | void KPrefsWidBool::writeConfig() |
74 | { | 74 | { |
diff --git a/libkdepim/libkdepimE.pro b/libkdepim/libkdepimE.pro index 05abaa5..414ac2b 100644 --- a/libkdepim/libkdepimE.pro +++ b/libkdepim/libkdepimE.pro | |||
@@ -1,22 +1,23 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on | 2 | CONFIG += qt warn_on |
3 | TARGET = microkdepim | 3 | TARGET = microkdepim |
4 | INCLUDEPATH += ../microkde ../qtcompat ../libkabcwrap ../microkde/kdecore | 4 | INCLUDEPATH += ../microkde ../qtcompat ../libkabcwrap ../microkde/kdecore |
5 | INCLUDEPATH += . .. | 5 | INCLUDEPATH += . .. |
6 | LIBS += -lmicrokde | 6 | LIBS += -lmicrokde |
7 | LIBS += -L$(QPEDIR)/lib | ||
7 | OBJECTS_DIR = obj/$(PLATFORM) | 8 | OBJECTS_DIR = obj/$(PLATFORM) |
8 | MOC_DIR = moc/$(PLATFORM) | 9 | MOC_DIR = moc/$(PLATFORM) |
9 | DESTDIR=$(QPEDIR)/lib | 10 | DESTDIR=$(QPEDIR)/lib |
10 | 11 | ||
11 | 12 | ||
12 | INTERFACES = \ | 13 | INTERFACES = \ |
13 | 14 | ||
14 | HEADERS = \ | 15 | HEADERS = \ |
15 | categoryeditdialog.h \ | 16 | categoryeditdialog.h \ |
16 | categoryeditdialog_base.h \ | 17 | categoryeditdialog_base.h \ |
17 | categoryselectdialog.h \ | 18 | categoryselectdialog.h \ |
18 | categoryselectdialog_base.h \ | 19 | categoryselectdialog_base.h \ |
19 | kdateedit.h \ | 20 | kdateedit.h \ |
20 | kdatepicker.h \ | 21 | kdatepicker.h \ |
21 | kinputdialog.h \ | 22 | kinputdialog.h \ |
22 | kincidenceformatter.h \ | 23 | kincidenceformatter.h \ |