~ubuntu-branches/ubuntu/vivid/akonadi/vivid

« back to all changes in this revision

Viewing changes to agentserver/agentlauncher.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2013-11-11 17:38:58 UTC
  • mfrom: (1.1.46)
  • Revision ID: package-import@ubuntu.com-20131111173858-kltz6s4ebjishfej
Tags: 1.10.80-0ubuntu1
* New upstream release
 - Update install files
 - Update disable_dbus_requiring_tests.diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
  AgentPluginLoader loader;
40
40
  QPluginLoader *factory = loader.load( agentPluginName );
41
 
  if ( factory == 0 )
 
41
  if ( factory == 0 ) {
42
42
    return 1;
 
43
  }
43
44
 
44
45
  QObject *instance = 0;
45
46
  const bool invokeSucceeded = QMetaObject::invokeMethod( factory->instance(),
58
59
  delete instance;
59
60
  return rv;
60
61
}
61