~ubuntu-branches/ubuntu/vivid/kdepim/vivid

« back to all changes in this revision

Viewing changes to messageviewer/vcardviewer.cpp

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman, Jonathan Riddell, Rohan Garg, Scott Kitterman
  • Date: 2012-11-21 13:12:36 UTC
  • mfrom: (0.2.33)
  • Revision ID: package-import@ubuntu.com-20121121131236-32ijw9a2txrar80k
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Rohan Garg ]
* Add nepomuk-core-dev to build-deps

[ Scott Kitterman ]
* Add new package, libpimcommon4
  - Add libpimcommon4.install
  - Add to debian/control, including kdepim-dbg and kdepim-dev depends
  - Add to kdepim-dev.install
* Remove usr/bin/backupmail and related files from kmail.install as they are
  not provided by upstream anymore
* Add usr/bin/pimsettingexporter and related files to kmail.install
* Add libnepomukwidgets-dev to build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
    }
64
64
    else
65
65
      enableButton(User3, false);
 
66
    connect( this, SIGNAL(user1Clicked()), SLOT(slotUser1()) );
 
67
    connect( this, SIGNAL(user2Clicked()), SLOT(slotUser2()) );
 
68
    connect( this, SIGNAL(user3Clicked()), SLOT(slotUser3()) );
66
69
  } else {
67
70
    mContactViewer->setRawContact(KABC::Addressee());
68
71
    enableButton(User1, false);
69
72
    showButton(User2, false);
70
73
    showButton(User3, false);
71
74
  }
72
 
  connect( this, SIGNAL(user1Clicked()), SLOT(slotUser1()) );
73
 
  connect( this, SIGNAL(user2Clicked()), SLOT(slotUser2()) );
74
 
  connect( this, SIGNAL(user3Clicked()), SLOT(slotUser3()) );
75
75
 
76
76
  resize(300,400);
77
77
}