~ubuntu-branches/ubuntu/precise/kdepim/precise-proposed

« back to all changes in this revision

Viewing changes to kmail/collectiontemplatespage.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:51 UTC
  • mfrom: (0.2.20)
  • Revision ID: package-import@ubuntu.com-20111215141751-yg890pa7vnlo34e0
Tags: 4:4.7.90-0ubuntu1
new upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
  btns->addWidget( mCopyGlobal );
81
81
  topLayout->addLayout( btns );
82
82
 
83
 
  connect( mCustom, SIGNAL(toggled( bool )),
84
 
           mWidget, SLOT(setEnabled( bool )) );
85
 
  connect( mCustom, SIGNAL(toggled( bool )),
86
 
           mCopyGlobal, SLOT(setEnabled( bool )) );
 
83
  connect( mCustom, SIGNAL(toggled(bool)),
 
84
           mWidget, SLOT(setEnabled(bool)) );
 
85
  connect( mCustom, SIGNAL(toggled(bool)),
 
86
           mCopyGlobal, SLOT(setEnabled(bool)) );
87
87
 
88
88
  connect( mCopyGlobal, SIGNAL(clicked()),
89
89
           this, SLOT(slotCopyGlobal()) );
96
96
  if ( !fd )
97
97
    return;
98
98
 
99
 
  mCollectionId = fd->idString();
 
99
  mCollectionId = QString::number( col.id() );
100
100
 
101
101
  Templates t( mCollectionId );
102
102