aboutsummaryrefslogtreecommitdiff
path: root/gdb/tui/tui-data.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2023-02-08 15:36:23 -0500
committerSimon Marchi <simon.marchi@polymtl.ca>2023-02-08 15:46:02 -0500
commitc583a2520616c2736cffc389c89a48b159366e6c (patch)
treeb4925f26506fcee96c16119431c01760f05db95d /gdb/tui/tui-data.c
parentca7f92c2f15b86b09c4a8ad14806bef666308d31 (diff)
downloadgdb-users/simark/clang-format.zip
gdb-users/simark/clang-format.tar.gz
gdb-users/simark/clang-format.tar.bz2
Run clang-format.shusers/simark/clang-format
Change-Id: Ia948cc26d534b0dd02702244d52434b1a2093968
Diffstat (limited to 'gdb/tui/tui-data.c')
-rw-r--r--gdb/tui/tui-data.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/gdb/tui/tui-data.c b/gdb/tui/tui-data.c
index 0daed32..0d2a78b 100644
--- a/gdb/tui/tui-data.c
+++ b/gdb/tui/tui-data.c
@@ -43,7 +43,6 @@ tui_win_resized ()
return win_resized;
}
-
/* Set a whether the terminal window has been resized or not. */
void
tui_set_win_resized_to (bool resized)
@@ -51,7 +50,6 @@ tui_set_win_resized_to (bool resized)
win_resized = resized;
}
-
/* Answer the window with the logical focus. */
struct tui_win_info *
tui_win_with_focus (void)
@@ -59,7 +57,6 @@ tui_win_with_focus (void)
return win_with_focus;
}
-
/* Set the logical focus to win_info. */
void
tui_set_win_focus_to (struct tui_win_info *win_info)
@@ -72,7 +69,6 @@ tui_set_win_focus_to (struct tui_win_info *win_info)
}
}
-
/* Accessor for the term_height. */
int
tui_term_height (void)
@@ -80,7 +76,6 @@ tui_term_height (void)
return term_height;
}
-
/* Mutator for the term height. */
void
tui_set_term_height_to (int h)
@@ -88,7 +83,6 @@ tui_set_term_height_to (int h)
term_height = h;
}
-
/* Accessor for the term_width. */
int
tui_term_width (void)
@@ -96,7 +90,6 @@ tui_term_width (void)
return term_width;
}
-
/* Mutator for the term_width. */
void
tui_set_term_width_to (int w)
@@ -104,7 +97,6 @@ tui_set_term_width_to (int w)
term_width = w;
}
-
/* Answer the next window in the list, cycling back to the top if
necessary. */
struct tui_win_info *
@@ -128,7 +120,6 @@ tui_next_win (struct tui_win_info *cur_win)
return *iter;
}
-
/* Answer the prev window in the list, cycling back to the bottom if
necessary. */
struct tui_win_info *
@@ -152,7 +143,6 @@ tui_prev_win (struct tui_win_info *cur_win)
return *iter;
}
-
void
tui_win_info::rerender ()
{