~ubuntu-branches/ubuntu/raring/kdepimlibs/raring-proposed

« back to all changes in this revision

Viewing changes to kabc/plugins/ldapkio/resourceldapkioconfig.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-14 14:37:07 UTC
  • mfrom: (1.1.72)
  • Revision ID: package-import@ubuntu.com-20111214143707-nvfc00wnfayzn9ig
Tags: 4:4.7.90-0ubuntu1
* New upstream beta release
* Add packages libkalarmcal2 and libakonadi-notes4

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
  mainLayout->addWidget( mSubTree );
88
88
  mainLayout->addWidget( box );
89
89
 
90
 
  connect( mEditButton, SIGNAL( clicked() ), SLOT( editAttributes() ) );
91
 
  connect( mCacheButton, SIGNAL( clicked() ), SLOT( editCache() ) );
 
90
  connect( mEditButton, SIGNAL(clicked()), SLOT(editAttributes()) );
 
91
  connect( mCacheButton, SIGNAL(clicked()), SLOT(editCache()) );
92
92
}
93
93
 
94
94
void ResourceLDAPKIOConfig::loadSettings( KRES::Resource *res )
294
294
  mMapCombo->addItem( i18n( "Netscape" ) );
295
295
  mMapCombo->addItem( i18n( "Evolution" ) );
296
296
  mMapCombo->addItem( i18n( "Outlook" ) );
297
 
  connect( mMapCombo, SIGNAL( activated( int ) ), SLOT( mapChanged( int ) ) );
 
297
  connect( mMapCombo, SIGNAL(activated(int)), SLOT(mapChanged(int)) );
298
298
 
299
299
  label = new QLabel( i18n( "RDN prefix attribute:" ), page );
300
300
  layout->addWidget( label, 1, 0 );
436
436
  connect( bt, SIGNAL(toggled(bool)), mAutoCache, SLOT(setEnabled(bool)) );
437
437
 
438
438
  QPushButton *lcache = new QPushButton( i18n( "Load into Cache" ), page );
439
 
  connect( lcache, SIGNAL( clicked() ), SLOT( loadCache() ) );
 
439
  connect( lcache, SIGNAL(clicked()), SLOT(loadCache()) );
440
440
 
441
441
  layout->addWidget( mCacheBox );
442
442
  layout->addWidget( mAutoCache );