Bug 96448 - Usabiligy: Reply-To input line should have auto-completion
Summary: Usabiligy: Reply-To input line should have auto-completion
Status: RESOLVED FIXED
Alias: None
Product: kmail
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: kdepim bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-01-06 16:19 UTC by Reinhold Kainhofer
Modified: 2007-09-14 12:17 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Reinhold Kainhofer 2005-01-06 16:19:55 UTC
Version:            (using KDE Devel)
Installed from:    Compiled sources

The reply-to input line in kmail's composer should have auto-completion.
Comment 1 Till Adam 2005-01-06 16:20:19 UTC
CVS commit by tilladam: 

Enable completion for the reply-to field.

BUG: 96448


  M +1 -1      kmcomposewin.cpp   1.902


--- kdepim/kmail/kmcomposewin.cpp  #1.901:1.902
@@ -168,5 +168,5 @@ KMComposeWin::KMComposeWin( KMMessage *a
   mTransport = new QComboBox(true, mMainWidget);
   mEdtFrom = new KMLineEdit(this,false,mMainWidget, "fromLine");
-  mEdtReplyTo = new KMLineEdit(this,false,mMainWidget, "replyToLine");
+  mEdtReplyTo = new KMLineEdit(this,true,mMainWidget, "replyToLine");
   mEdtTo = new KMLineEdit(this,true,mMainWidget, "toLine");
   mEdtCc = new KMLineEdit(this,true,mMainWidget, "ccLine");