Bug 96448

Summary: Usabiligy: Reply-To input line should have auto-completion
Product: [Applications] kmail Reporter: Reinhold Kainhofer <reinhold>
Component: generalAssignee: kdepim bugs <kdepim-bugs>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:

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");