summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/addresssettings.cpp
authoreilers <eilers>2002-11-18 09:38:28 (UTC)
committer eilers <eilers>2002-11-18 09:38:28 (UTC)
commit8401def65aa4f19d91873bc57a3dcf25c358c490 (patch) (side-by-side diff)
tree3e64bd2d1b6f92c77304cc2d2c0fd06b07d718e5 /core/pim/addressbook/addresssettings.cpp
parent4d0773414a0fb59e53f30d4d2363f73304f474dc (diff)
downloadopie-8401def65aa4f19d91873bc57a3dcf25c358c490.zip
opie-8401def65aa4f19d91873bc57a3dcf25c358c490.tar.gz
opie-8401def65aa4f19d91873bc57a3dcf25c358c490.tar.bz2
Back to main tree. Back to main tree.
Back to main tree. Waiting for moving to feature freeze ..
Diffstat (limited to 'core/pim/addressbook/addresssettings.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/addressbook/addresssettings.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/pim/addressbook/addresssettings.cpp b/core/pim/addressbook/addresssettings.cpp
index e7c2210..2a9413c 100644
--- a/core/pim/addressbook/addresssettings.cpp
+++ b/core/pim/addressbook/addresssettings.cpp
@@ -13,44 +13,44 @@
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/
#include "addresssettings.h"
#include <qpe/config.h>
-#include <qpe/contact.h>
+#include <opie/ocontact.h>
#include <qfile.h>
#include <qlistbox.h>
#include <stdlib.h>
AddressSettings::AddressSettings( QWidget *parent, const char *name )
: AddressSettingsBase( parent, name, TRUE )
{
init();
}
AddressSettings::~AddressSettings()
{
}
void AddressSettings::init()
{
- QStringList slFields = Contact::trfields();
+ QStringList slFields = OContact::trfields();
// Make this match what is in initFields
slFields.remove( tr("Name Title") );
slFields.remove( tr("First Name") );
slFields.remove( tr("Last Name") );
slFields.remove( tr("File As") );
slFields.remove( tr("Default Email") );
slFields.remove( tr("Notes") );
slFields.remove( tr("Gender") );
for( QStringList::Iterator it = slFields.begin();
it != slFields.end(); ++it ) {