diff options
author | Leandro Pereira <leandro@hardinfo.org> | 2019-07-01 19:41:52 -0700 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2019-07-04 22:01:04 -0700 |
commit | 1cc404f49961300f4b4e5ecbab655ea18b0bb301 (patch) | |
tree | 6317e156aa63cdad8a70931ed71c6ab5a86046db /includes/shell.h | |
parent | 8aea41e153ae1f3110109919a9a3eea0b1cab770 (diff) |
Rename SummaryView to DetailView
Diffstat (limited to 'includes/shell.h')
-rw-r--r-- | includes/shell.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/shell.h b/includes/shell.h index 627f7747..c68d2115 100644 --- a/includes/shell.h +++ b/includes/shell.h @@ -27,7 +27,7 @@ typedef struct _Shell Shell; typedef struct _ShellTree ShellTree; typedef struct _ShellInfoTree ShellInfoTree; typedef struct _ShellNote ShellNote; -typedef struct _ShellSummary ShellSummary; +typedef struct _DetailView DetailView; typedef struct _ShellModule ShellModule; typedef struct _ShellModuleMethod ShellModuleMethod; @@ -52,7 +52,7 @@ typedef enum { SHELL_VIEW_LOAD_GRAPH, SHELL_VIEW_PROGRESS, SHELL_VIEW_PROGRESS_DUAL, - SHELL_VIEW_SUMMARY, + SHELL_VIEW_DETAIL, SHELL_VIEW_N_VIEWS } ShellViewType; @@ -88,7 +88,7 @@ struct _Shell { ShellModule *selected_module; ShellModuleEntry *selected; ShellNote *note; - ShellSummary *summary; + DetailView *detail_view; LoadGraph *loadgraph; GtkActionGroup *action_group; @@ -105,7 +105,7 @@ struct _Shell { HelpViewer *help_viewer; }; -struct _ShellSummary { +struct _DetailView { GtkWidget *header; GtkWidget *scroll; GtkWidget *view; |