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

« back to all changes in this revision

Viewing changes to messagelist/utils/aggregationeditor.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:
52
52
  mGroupingCombo = new KComboBox( tab );
53
53
  tabg->addWidget( mGroupingCombo, 0, 1 );
54
54
 
55
 
  connect( mGroupingCombo, SIGNAL( activated( int ) ),
56
 
           SLOT( groupingComboActivated( int ) ) );
 
55
  connect( mGroupingCombo, SIGNAL(activated(int)),
 
56
           SLOT(groupingComboActivated(int)) );
57
57
 
58
58
  tabg->addWidget( new QLabel( i18n( "Group expand policy:" ), tab ), 3, 0 );
59
59
  mGroupExpandPolicyCombo = new KComboBox( tab );
63
63
  mThreadingCombo = new KComboBox( tab );
64
64
  tabg->addWidget( mThreadingCombo, 4, 1 );
65
65
 
66
 
  connect( mThreadingCombo, SIGNAL( activated( int ) ),
67
 
           SLOT( threadingComboActivated( int ) ) );
 
66
  connect( mThreadingCombo, SIGNAL(activated(int)),
 
67
           SLOT(threadingComboActivated(int)) );
68
68
 
69
69
  tabg->addWidget( new QLabel( i18n( "Thread leader:" ), tab ), 5, 0 );
70
70
  mThreadLeaderCombo = new KComboBox( tab );
235
235
    );
236
236
}
237
237
 
 
238
 
 
239
#include "aggregationeditor.moc"