/gpump/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/gpump/trunk

« back to all changes in this revision

Viewing changes to src/main.c

  • Committer: Gustav Hartvigsson
  • Date: 2014-02-09 01:40:21 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20140209014021-8whq22ru8j5qpng3
Something is wrong with GtkListStore it seems,
but I can not figure it out...

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
#include <stdlib.h>
11
11
#include <string.h>
12
12
 
 
13
#include "GPumpApp.h"
 
14
 
13
15
int main (int argc, char ** argv) {
14
 
  
15
 
  return 0;
 
16
  gtk_init (&argc, &argv);
 
17
  GPumpApp * app = gpump_app_new ();
 
18
  return g_application_run (G_APPLICATION (app), argc, argv);
16
19
}