-rw-r--r-- | core/pim/addressbook/abeditor.cpp | 2 | ||||
-rw-r--r-- | core/pim/addressbook/addressbook.cpp | 8 | ||||
-rw-r--r-- | core/pim/addressbook/addressbook.h | 4 | ||||
-rw-r--r-- | core/pim/addressbook/addressbook.pro | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/core/pim/addressbook/abeditor.cpp b/core/pim/addressbook/abeditor.cpp index 94baa71..6354db9 100644 --- a/core/pim/addressbook/abeditor.cpp +++ b/core/pim/addressbook/abeditor.cpp | |||
@@ -55,3 +55,3 @@ AbEditor::AbEditor( const Contact &entry, const QValueList<int> *newOrdered, | |||
55 | QStringList *slNewOrdered, | 55 | QStringList *slNewOrdered, |
56 | QWidget *parent, const char *name, WFlags fl ) | 56 | QWidget *parent = 0, const char *name = 0, WFlags fl = 0 ) |
57 | : QDialog( parent, name, TRUE, fl ), | 57 | : QDialog( parent, name, TRUE, fl ), |
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp index a2b8276..e8fa37c 100644 --- a/core/pim/addressbook/addressbook.cpp +++ b/core/pim/addressbook/addressbook.cpp | |||
@@ -22,3 +22,3 @@ | |||
22 | 22 | ||
23 | #include "abeditor.h" | 23 | #include "contacteditor.h" |
24 | #include "ablabel.h" | 24 | #include "ablabel.h" |
@@ -431,3 +431,3 @@ void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data) | |||
431 | if ( bAbEditFirstTime ) { | 431 | if ( bAbEditFirstTime ) { |
432 | abEditor = new AbEditor( cnt, &orderedFields, &slOrderedFields, | 432 | abEditor = new ContactEditor( cnt, &orderedFields, &slOrderedFields, |
433 | this, "editor" ); | 433 | this, "editor" ); |
@@ -482,3 +482,3 @@ void AddressbookWindow::editPersonal() | |||
482 | if (bAbEditFirstTime) { | 482 | if (bAbEditFirstTime) { |
483 | abEditor = new AbEditor( me, &orderedFields, &slOrderedFields, | 483 | abEditor = new ContactEditor( me, &orderedFields, &slOrderedFields, |
484 | this, "editor" ); | 484 | this, "editor" ); |
@@ -542,3 +542,3 @@ void AddressbookWindow::editEntry( EntryMode entryMode ) | |||
542 | if ( bAbEditFirstTime ) { | 542 | if ( bAbEditFirstTime ) { |
543 | abEditor = new AbEditor( entry, &orderedFields, &slOrderedFields, | 543 | abEditor = new ContactEditor( entry, &orderedFields, &slOrderedFields, |
544 | this, "editor" ); | 544 | this, "editor" ); |
diff --git a/core/pim/addressbook/addressbook.h b/core/pim/addressbook/addressbook.h index 9694465..342077f 100644 --- a/core/pim/addressbook/addressbook.h +++ b/core/pim/addressbook/addressbook.h | |||
@@ -24,3 +24,3 @@ | |||
24 | 24 | ||
25 | class AbEditor; | 25 | class ContactEditor; |
26 | class AbLabel; | 26 | class AbLabel; |
@@ -85,3 +85,3 @@ private: | |||
85 | enum Panes { paneList=0, paneView, paneEdit }; | 85 | enum Panes { paneList=0, paneView, paneEdit }; |
86 | AbEditor *abEditor; | 86 | ContactEditor *abEditor; |
87 | AbLabel *mView; | 87 | AbLabel *mView; |
diff --git a/core/pim/addressbook/addressbook.pro b/core/pim/addressbook/addressbook.pro index 31de2a3..180b401 100644 --- a/core/pim/addressbook/addressbook.pro +++ b/core/pim/addressbook/addressbook.pro | |||
@@ -4,3 +4,3 @@ DESTDIR = $(OPIEDIR)/bin | |||
4 | HEADERS= addressbook.h \ | 4 | HEADERS= addressbook.h \ |
5 | abeditor.h \ | 5 | contacteditor.h \ |
6 | ablabel.h \ | 6 | ablabel.h \ |
@@ -10,3 +10,3 @@ SOURCES = main.cpp \ | |||
10 | addressbook.cpp \ | 10 | addressbook.cpp \ |
11 | abeditor.cpp \ | 11 | contacteditor.cpp \ |
12 | ablabel.cpp \ | 12 | ablabel.cpp \ |