]> Pileus Git - ~andy/linux/commitdiff
perf ui/gtk: Use helpline API in browser
authorNamhyung Kim <namhyung@kernel.org>
Thu, 16 Aug 2012 08:14:53 +0000 (17:14 +0900)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 17 Aug 2012 15:37:36 +0000 (12:37 -0300)
As we now have a helpline implementation, use it for displaying help
messages.

Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Pekka Enberg <penberg@kernel.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1345104894-14205-4-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/ui/gtk/browser.c

index ec12e0b4ded6567d1c673049cf39cea0f93891f0..26b5b652a8cded852c1e51d2ba49324a88fa3ae0 100644 (file)
@@ -3,6 +3,7 @@
 #include "../evsel.h"
 #include "../sort.h"
 #include "../hist.h"
+#include "../helpline.h"
 #include "gtk.h"
 
 #include <signal.h>
@@ -166,7 +167,7 @@ static GtkWidget *perf_gtk__setup_statusbar(void)
 }
 
 int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist,
-                                 const char *help __used,
+                                 const char *help,
                                  void (*timer) (void *arg)__used,
                                  void *arg __used, int delay_secs __used)
 {
@@ -233,6 +234,8 @@ int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist,
 
        gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
 
+       ui_helpline__push(help);
+
        gtk_main();
 
        perf_gtk__deactivate_context(&pgctx);