aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/ui/browser.h
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2010-08-07 13:56:04 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2010-08-10 16:08:33 -0300
commitd247eb6b924bbc2f13748c89b6c72c7a3d46645c (patch)
tree88be5eaca242e18622517825b670995a266660f3 /tools/perf/util/ui/browser.h
parentperf ui: Start breaking down newt.c into multiple files (diff)
downloadlinux-dev-d247eb6b924bbc2f13748c89b6c72c7a3d46645c.tar.xz
linux-dev-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 '')
-rw-r--r--tools/perf/util/ui/browser.h6
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);