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

« back to all changes in this revision

Viewing changes to mailcommon/aclmanager.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:
172
172
        mChanged( false )
173
173
    {
174
174
      mAddAction = new QAction( i18n( "Add Entry..." ), q );
175
 
      q->connect( mAddAction, SIGNAL( triggered( bool ) ),
176
 
                  q, SLOT( addAcl() ) );
 
175
      q->connect( mAddAction, SIGNAL(triggered(bool)),
 
176
                  q, SLOT(addAcl()) );
177
177
 
178
178
      mEditAction = new QAction( i18n( "Edit Entry..." ), q );
179
179
      mEditAction->setEnabled( false );
180
 
      q->connect( mEditAction, SIGNAL( triggered( bool ) ),
181
 
                  q, SLOT( editAcl() ) );
 
180
      q->connect( mEditAction, SIGNAL(triggered(bool)),
 
181
                  q, SLOT(editAcl()) );
182
182
 
183
183
      mDeleteAction = new QAction( i18n( "Remove Entry" ), q );
184
184
      mDeleteAction->setEnabled( false );
185
 
      q->connect( mDeleteAction, SIGNAL( triggered( bool ) ),
186
 
                  q, SLOT( deleteAcl() ) );
 
185
      q->connect( mDeleteAction, SIGNAL(triggered(bool)),
 
186
                  q, SLOT(deleteAcl()) );
187
187
 
188
188
      mModel = new AclModel( q );
189
189
 
190
190
      mSelectionModel = new QItemSelectionModel( mModel );
191
 
      q->connect( mSelectionModel, SIGNAL( selectionChanged( const QItemSelection&, const QItemSelection& ) ),
192
 
                  q, SLOT( selectionChanged() ) );
 
191
      q->connect( mSelectionModel, SIGNAL(selectionChanged(QItemSelection,QItemSelection)),
 
192
                  q, SLOT(selectionChanged()) );
193
193
    }
194
194
 
195
195
    ~Private()