Skip to content

Commit

Permalink
perf ui/gtk: Use helpline API in browser
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Namhyung Kim authored and Arnaldo Carvalho de Melo committed Aug 17, 2012
1 parent 4bb1646 commit ed70c60
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/perf/ui/gtk/browser.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include "../evsel.h"
#include "../sort.h"
#include "../hist.h"
#include "../helpline.h"
#include "gtk.h"

#include <signal.h>
Expand Down Expand Up @@ -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)
{
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit ed70c60

Please sign in to comment.