perf ui: Add ui_progress__finish()
[platform/adaptation/renesas_rcar/renesas_kernel.git] / tools / perf / ui / gtk / progress.c
index 903426f..482bcf3 100644 (file)
@@ -40,8 +40,17 @@ static void gtk_progress_update(u64 curr, u64 total, const char *title)
                gtk_main_iteration();
 }
 
+static void gtk_progress_finish(void)
+{
+       /* this will also destroy all of its children */
+       gtk_widget_destroy(dialog);
+
+       dialog = NULL;
+}
+
 static struct ui_progress gtk_progress_fns = {
        .update         = gtk_progress_update,
+       .finish         = gtk_progress_finish,
 };
 
 void perf_gtk__init_progress(void)