/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/GPumpApp.c

  • Committer: Gustav Hatvigsson
  • Date: 2014-04-14 13:21:13 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20140414132113-q0uur6tj32re82l1
* made a few changes, nothing big.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
  g_print ("init\n");
70
70
  self->priv = GPUMP_APP_GET_PRIVATE (self);
71
71
  
72
 
  gpump_settings_data_get_default ();
73
 
  
74
72
}
75
73
 
76
74
void gpump_app_class_init (GPumpAppClass * klass) {
106
104
  _prepere_new_post_button (GPUMP_APP (application));
107
105
  _prepere_refresh_button (GPUMP_APP (application));
108
106
  
 
107
  /* Init the settings object */
 
108
  GSettingsData * settings = gpump_settings_data_get_default ();
 
109
  
109
110
  /* Show it! */
110
111
  gtk_widget_show_all (GTK_WIDGET(GPUMP_APP(application)->priv->window));
111
112
  
 
113
  g_object_unref (settings);
 
114
  
112
115
  g_print ("done GPumpApp activate.\n");
113
116
}
114
117