diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-08-07 13:56:04 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-08-10 16:08:33 -0300 |
commit | d247eb6b924bbc2f13748c89b6c72c7a3d46645c (patch) | |
tree | 88be5eaca242e18622517825b670995a266660f3 /tools/perf/util/ui/browser.h | |
parent | ef8f34aabf2450a9fb36b2c87fe0ea0b86a38195 (diff) | |
download | linux-d247eb6b924bbc2f13748c89b6c72c7a3d46645c.tar.gz linux-d247eb6b924bbc2f13748c89b6c72c7a3d46645c.tar.bz2 linux-d247eb6b924bbc2f13748c89b6c72c7a3d46645c.zip |
perf ui: Shorten ui_browser member names
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/ui/browser.h')
-rw-r--r-- | tools/perf/util/ui/browser.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/util/ui/browser.h b/tools/perf/util/ui/browser.h index bcc4391405bd..8eed24cf2854 100644 --- a/tools/perf/util/ui/browser.h +++ b/tools/perf/util/ui/browser.h @@ -13,9 +13,9 @@ struct ui_browser { newtComponent form, sb; - u64 index, first_visible_entry_idx; - void *first_visible_entry, *entries; - u16 top, left, width, height; + u64 index, top_idx; + void *top, *entries; + u16 y, x, width, height; void *priv; unsigned int (*refresh)(struct ui_browser *self); void (*write)(struct ui_browser *self, void *entry, int row); |