~ubuntu-branches/ubuntu/trusty/kdepimlibs/trusty

« back to all changes in this revision

Viewing changes to akonadi/erroroverlay.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg, Rohan Garg, Philip Muškovac
  • Date: 2013-11-23 17:36:44 UTC
  • mfrom: (1.1.102)
  • Revision ID: package-import@ubuntu.com-20131123173644-p5ow94192ezsny8g
Tags: 4:4.11.80-0ubuntu1
[ Rohan Garg ]
* New upstream beta release
  - Bump akonadi requirement to 1.10.45
  - Update install files
  - Update symbols

[ Philip Muškovac ]
* kdepimlibs-dev/-dbg breaks/replaces kdepim-runtime/-dbg (<< 4:4.11.80)

Show diffs side-by-side

added added

removed removed

Lines of Context:
113
113
  connect( ServerManager::self(), SIGNAL(stateChanged(Akonadi::ServerManager::State)),
114
114
           SLOT(serverStateChanged(Akonadi::ServerManager::State)) );
115
115
 
116
 
 
117
 
 
118
116
  QPalette p = palette();
119
117
  p.setColor( backgroundRole(), QColor( 0, 0, 0, 128 ) );
120
118
  p.setColor( foregroundRole(), Qt::white );
175
173
void ErrorOverlay::startClicked()
176
174
{
177
175
  const ServerManager::State state = ServerManager::state();
178
 
  if( state == ServerManager::Running ) {
 
176
  if ( state == ServerManager::Running ) {
179
177
    serverStateChanged( state );
180
178
  } else {
181
179
    ServerManager::start();