~ubuntu-branches/ubuntu/saucy/sflphone/saucy

« back to all changes in this revision

Viewing changes to sflphone-common/libs/dbus-c++/tools/introspect.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2010-12-24 16:33:55 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20101224163355-tkvvikqxbrbav6up
Tags: 0.9.11-1
* New upstream release
* Add new build dependencies on libwebkit-dev and libyaml-dev

* Bump Standards-Version up to 3.9.1
* Bump debhelper compatibility to 8
* Patch another typo in the upstream code (lintian notice)

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
static char *path;
33
33
static char *service;
34
34
 
35
 
void niam (int sig)
36
 
{
 
35
void niam (int sig) {
37
36
    DBus::Connection conn = systembus ? DBus::Connection::SystemBus() : DBus::Connection::SessionBus();
38
37
 
39
38
    IntrospectedObject io (conn, path, service);
43
42
    dispatcher.leave();
44
43
}
45
44
 
46
 
int main (int argc, char ** argv)
47
 
{
 
45
int main (int argc, char ** argv) {
48
46
    signal (SIGTERM, niam);
49
47
    signal (SIGINT, niam);
50
48
    signal (SIGALRM, niam);