~ubuntu-branches/ubuntu/quantal/kdepim/quantal

« back to all changes in this revision

Viewing changes to messagelist/utils/optionseteditor.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:51 UTC
  • mto: This revision was merged to the branch mainline in revision 193.
  • Revision ID: package-import@ubuntu.com-20111215141751-bmhdpiwl23wd9w26
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
  mNameEdit = new KLineEdit( tab );
48
48
  tabg->addWidget( mNameEdit, 0, 1 );
49
49
 
50
 
  connect( mNameEdit, SIGNAL( textEdited( const QString & ) ),
51
 
           SLOT( slotNameEditTextEdited( const QString & ) ) );
 
50
  connect( mNameEdit, SIGNAL(textEdited(QString)),
 
51
           SLOT(slotNameEditTextEdited(QString)) );
52
52
 
53
53
  l = new QLabel( i18nc( "@label:textbox Description of the option", "Description:" ), tab );
54
54
  tabg->addWidget( l, 1, 0 );
65
65
{
66
66
}
67
67
 
 
68
 
 
69
#include "optionseteditor.moc"