following GTK convention
[lttv.git] / ltt / branches / poly / lttv / modules / guiStatistic / guiStatistic.c
index 3a9e5a8ddb9c41e17a338e060bddc2190fb8c9d3..64c1718897e69778ea20fb5e1ba0d385f4f3a09d 100644 (file)
@@ -33,9 +33,9 @@ static GSList *g_statistic_viewer_data_list = NULL ;
 typedef struct _StatisticViewerData StatisticViewerData;
 
 //! Statistic Viewer's constructor hook
-GtkWidget *h_gui_statistic(mainWindow *parent_window);
+GtkWidget *h_gui_statistic(MainWindow *parent_window);
 //! Statistic Viewer's constructor
-StatisticViewerData *gui_statistic(mainWindow *parent_window);
+StatisticViewerData *gui_statistic(MainWindow *parent_window);
 //! Statistic Viewer's destructor
 void gui_statistic_destructor(StatisticViewerData *statistic_viewer_data);
 void gui_statistic_free(StatisticViewerData *statistic_viewer_data);
@@ -61,7 +61,7 @@ enum
 };
 
 struct _StatisticViewerData{
-  mainWindow * mw;
+  MainWindow * mw;
   LttvTracesetStats * stats;
 
   GtkWidget    * hpaned_v;
@@ -164,7 +164,7 @@ gui_statistic_destructor(StatisticViewerData *statistic_viewer_data)
  * @return The widget created.
  */
 GtkWidget *
-h_gui_statistic(mainWindow * parent_window)
+h_gui_statistic(MainWindow * parent_window)
 {
   StatisticViewerData* statistic_viewer_data = gui_statistic(parent_window) ;
 
@@ -181,7 +181,7 @@ h_gui_statistic(mainWindow * parent_window)
  * @return The Statistic viewer data created.
  */
 StatisticViewerData *
-gui_statistic(mainWindow *parent_window)
+gui_statistic(MainWindow *parent_window)
 {
   GtkCellRenderer *renderer;
   GtkTreeViewColumn *column;
@@ -270,7 +270,7 @@ gui_statistic(mainWindow *parent_window)
 void grab_focus(GtkWidget *widget, gpointer data)
 {
   StatisticViewerData *statistic_viewer_data = (StatisticViewerData *)data;
-  mainWindow * mw = statistic_viewer_data->mw;
+  MainWindow * mw = statistic_viewer_data->mw;
   SetFocusedPane(mw, gtk_widget_get_parent(statistic_viewer_data->hpaned_v));
 }
 
This page took 0.023099 seconds and 4 git commands to generate.