/+junk/gnome-dialer

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/gnome-dialer

« back to all changes in this revision

Viewing changes to dialer/main.c

  • Committer: Gustav Hartvigsson
  • Date: 2016-09-19 13:42:48 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20160919134248-yumvvuyzf80s8sly
* Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <gtk/gtk.h>
 
2
 
 
3
#include "app.h"
 
4
 
 
5
int
 
6
main (int argc, char ** argv) {
 
7
  gtk_init (&argc, &argv);
 
8
  
 
9
  App * app = app_new ();
 
10
  
 
11
  /* Starting the GTK Main loop. */
 
12
  gtk_main ();
 
13
  
 
14
  g_object_unref (app->bldr);
 
15
  
 
16
  g_free (app);
 
17
  
 
18
  return 0;
 
19
}