diff --git a/identitydialog.cpp b/identitydialog.cpp
index 8937e60a7..173e94c2f 100644
--- a/identitydialog.cpp
+++ b/identitydialog.cpp
@@ -1,4 +1,4 @@
-/* -*- c++ -*-
+/* -*- c-basic-offset: 2 -*-
identitydialog.cpp
This file is part of KMail, the KDE mail client.
@@ -59,7 +59,7 @@ namespace KMail {
IdentityDialog::IdentityDialog( QWidget * parent, const char * name )
: KDialogBase( Plain, i18n("Edit Identity"), Ok|Cancel|Help, Ok,
- parent, name )
+ parent, name )
{
// tmp. vars:
QWidget * tab;
@@ -89,10 +89,10 @@ namespace KMail {
label = new QLabel( mNameEdit, i18n("&Your name:"), tab );
glay->addWidget( label, row, 0 );
msg = i18n(" This field should have your name, as you'd like "
- "it to appear in the email header that is sent out. If you leave this blank, your real name won't "
- "appear, only the email address.Your name
"
- "
This field should have your name, as you'd like " + "it to appear in the email header that is sent out.
" + "If you leave this blank, your real name won't " + "appear, only the email address.
"); QWhatsThis::add( label, msg ); QWhatsThis::add( mNameEdit, msg ); @@ -103,10 +103,10 @@ namespace KMail { label = new QLabel( mOrganizationEdit, i18n("Organi&zation:"), tab ); glay->addWidget( label, row, 0 ); msg = i18n("This field should have the name of your organization " - "if you'd like it to be shown in the email header that " - "is sent out.
" - "It is safe (and normal) to leave this blank.
This field should have the name of your organization " + "if you'd like it to be shown in the email header that " + "is sent out.
" + "It is safe (and normal) to leave this blank.
"); QWhatsThis::add( label, msg ); QWhatsThis::add( mOrganizationEdit, msg ); @@ -118,9 +118,9 @@ namespace KMail { label = new QLabel( mEmailEdit, i18n("&Email address:"), tab ); glay->addWidget( label, row, 0 ); msg = i18n("This field should have your full email address.
" - "If you leave this blank, or get it wrong, people " - "will have trouble replying to you.
This field should have your full email address.
" + "If you leave this blank, or get it wrong, people " + "will have trouble replying to you.
"); QWhatsThis::add( label, msg ); QWhatsThis::add( mEmailEdit, msg ); @@ -142,15 +142,15 @@ namespace KMail { label = new QLabel ( mReplyToEdit, i18n("&Reply-To address:"), tab); glay->addWidget( label , row, 0 ); msg = i18n("This sets the Reply-to: header to contain a " - "different email address to the normal From: " - "address.
" - "This can be useful when you have a group of people " - "working together in similar roles. For example, you " - "might want any emails sent to have your email in the " - "From: field, but any responses to go to " - "a group address.
" - "If in doubt, leave this field blank.This sets the Reply-to: header to contain a " + "different email address to the normal From: " + "address.
" + "This can be useful when you have a group of people " + "working together in similar roles. For example, you " + "might want any emails sent to have your email in the " + "From: field, but any responses to go to " + "a group address.
" + "If in doubt, leave this field blank."); QWhatsThis::add( label, msg ); QWhatsThis::add( mReplyToEdit, msg ); @@ -161,12 +161,12 @@ namespace KMail { label = new QLabel( mBccEdit, i18n("&BCC addresses:"), tab ); glay->addWidget( label, row, 0 ); msg = i18n("The addresses that you enter here will be added to each " - "outgoing mail that is sent with this identity. They will not " - "be visible to other recipients.
" - "This is commonly used to send a copy of each sent message to " - "another account of yours.
" - "If in doubt, leave this field blank.
The addresses that you enter here will be added to each " + "outgoing mail that is sent with this identity. They will not " + "be visible to other recipients.
" + "This is commonly used to send a copy of each sent message to " + "another account of yours.
" + "If in doubt, leave this field blank.
"); QWhatsThis::add( label, msg ); QWhatsThis::add( mBccEdit, msg ); @@ -176,16 +176,16 @@ namespace KMail { mPgpKeyRequester->dialogButton()->setText( i18n("Chang&e...") ); mPgpKeyRequester->setDialogCaption( i18n("Your OpenPGP Key") ); mPgpKeyRequester->setDialogMessage( i18n("Select the OpenPGP key which " - "should be used to sign your " - "messages and when encrypting to " - "yourself.") ); + "should be used to sign your " + "messages and when encrypting to " + "yourself.") ); msg = i18n("The OpenPGP key you choose here will be used " - "to sign messages and to encrypt messages to " - "yourself. You can also use GnuPG keys.
" - "You can leave this blank, but KMail won't be able " - "to cryptographically sign emails. Normal mail functions won't " - "be affected." - "You can find out more about keys at http://www.gnupg.org