~ubuntu-branches/debian/jessie/xiphos/jessie

« back to all changes in this revision

Viewing changes to src/examples/ipc_client.c

  • Committer: Bazaar Package Importer
  • Author(s): Dmitrijs Ledkovs
  • Date: 2010-03-22 18:15:54 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100322181554-qlqchymwhcw28c0c
* New upstream release:
  + Bugfix only
  + Compatible with xulrunner 1.9.2
  + Update translations

* Revert changes introduced in 3.1.2-1ubuntu1. Thank you Chris Coulson
  for temporary fix.
* debian/xiphos.1 - spelling mistake
* waf is now default buildsystem
* help is now licensed under GPL
* Bumped standards version no changes required
* Changed email to @ubuntu.com

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
                printf ("ref: %s\n", ref);
48
48
                org_xiphos_remote_get_next_search_reference(proxy, &ref, NULL);
49
49
        }
50
 
        
 
50
 
51
51
        return FALSE;
52
52
}
53
53
 
99
99
        dbus_g_proxy_connect_signal (remote_object, "searchPerformedSignal",
100
100
                                     G_CALLBACK(search_performed_signal_handler),
101
101
                                     NULL, NULL);
102
 
        
 
102
 
103
103
        //add and connect to the navigationSignal
104
104
        dbus_g_proxy_add_signal (remote_object, "navigationSignal",
105
105
                                 G_TYPE_STRING, G_TYPE_INVALID);
106
106
        dbus_g_proxy_connect_signal (remote_object, "navigationSignal",
107
107
                                     G_CALLBACK(navigation_performed_signal_handler),
108
108
                                     NULL, NULL);
109
 
        
 
109
 
110
110
        g_main_loop_run (mainloop);
111
111
 
112
112
        exit (0);
113
113
 
114
114
}
115
 
                
116
 
 
117
 
        
 
115
 
 
116
 
 
117