if (TUI_SRC_WIN == NULL)
     tui_win_list[SRC_WIN] = new tui_source_window ();
-  TUI_SRC_WIN->reset (src_height,
-                     tui_term_width (),
-                     0,
-                     0);
+  TUI_SRC_WIN->resize (src_height,
+                      tui_term_width (),
+                      0,
+                      0);
   TUI_SRC_WIN->make_visible (true);
   TUI_SRC_WIN->m_has_locator = false;
 
   TUI_SRC_WIN->show_source_content ();
   if (TUI_DISASM_WIN == NULL)
     tui_win_list[DISASSEM_WIN] = new tui_disasm_window ();
-  TUI_DISASM_WIN->reset (asm_height,
-                        tui_term_width (),
-                        0,
-                        src_height - 1);
+  TUI_DISASM_WIN->resize (asm_height,
+                         tui_term_width (),
+                         0,
+                         src_height - 1);
   TUI_DISASM_WIN->make_visible (true);
-  locator->reset (2 /* 1 */ ,
-                 tui_term_width (),
-                 0,
-                 (src_height + asm_height) - 1);
+  locator->resize (2 /* 1 */ ,
+                  tui_term_width (),
+                  0,
+                  (src_height + asm_height) - 1);
   TUI_SRC_WIN->m_has_locator = false;
   TUI_DISASM_WIN->m_has_locator = true;
   locator->make_visible (true);
 
   if (TUI_CMD_WIN == NULL)
     tui_win_list[CMD_WIN] = new tui_cmd_window ();
-  TUI_CMD_WIN->reset (cmd_height,
-                     tui_term_width (),
-                     0,
-                     tui_term_height () - cmd_height);
+  TUI_CMD_WIN->resize (cmd_height,
+                      tui_term_width (),
+                      0,
+                      tui_term_height () - cmd_height);
   TUI_CMD_WIN->make_visible (true);
   current_layout = SRC_DISASSEM_COMMAND;
 }
   src_height = total_height - data_height;
   if (tui_win_list[DATA_WIN] == nullptr)
     tui_win_list[DATA_WIN] = new tui_data_window ();
-  tui_win_list[DATA_WIN]->reset (data_height, tui_term_width (), 0, 0);
+  tui_win_list[DATA_WIN]->resize (data_height, tui_term_width (), 0, 0);
   tui_win_list[DATA_WIN]->make_visible (true);
 
   if (new_layout == SRC_DATA_COMMAND)
 
   tui_source_window_base *base
     = (tui_source_window_base *) tui_win_list[win_type];
-  tui_win_list[win_type]->reset (src_height,
-                                tui_term_width (),
-                                0,
-                                data_height - 1);
-  locator->reset (2 /* 1 */ ,
-                 tui_term_width (),
-                 0,
-                 total_height - 1);
+  tui_win_list[win_type]->resize (src_height,
+                                 tui_term_width (),
+                                 0,
+                                 data_height - 1);
+  locator->resize (2 /* 1 */ ,
+                  tui_term_width (),
+                  0,
+                  total_height - 1);
   base->make_visible (true);
   base->m_has_locator = true;
   locator->make_visible (true);
 }
 
 void
-tui_gen_win_info::reset (int height_, int width_,
-                        int origin_x_, int origin_y_)
+tui_gen_win_info::resize (int height_, int width_,
+                         int origin_x_, int origin_y_)
 {
   int h = height_;
 
       win_info = TUI_DISASM_WIN;
     }
 
-  locator->reset (2 /* 1 */ ,
-                 tui_term_width (),
-                 0,
-                 src_height - 1);
-  win_info->reset (src_height - 1,
+  locator->resize (2 /* 1 */ ,
                   tui_term_width (),
                   0,
-                  0);
+                  src_height - 1);
+  win_info->resize (src_height - 1,
+                   tui_term_width (),
+                   0,
+                   0);
   win_info->make_visible (true);
 
 
 
   if (TUI_CMD_WIN == NULL)
     tui_win_list[CMD_WIN] = new tui_cmd_window ();
-  TUI_CMD_WIN->reset (cmd_height,
-                     tui_term_width (),
-                     0,
-                     src_height);
+  TUI_CMD_WIN->resize (cmd_height,
+                      tui_term_width (),
+                      0,
+                      src_height);
   TUI_CMD_WIN->make_visible (true);
   current_layout = layout_type;
 }
 
 }  
 
 void
-tui_source_window_base::reset (int height, int width,
-                              int origin_x, int origin_y)
+tui_source_window_base::resize (int height, int width,
+                               int origin_x, int origin_y)
 {
-  tui_gen_win_info::reset (height, width - 3,
-                          origin_x + 3, origin_y);
-  execution_info->reset (height, 3, origin_x, origin_y);
+  tui_gen_win_info::resize (height, width - 3,
+                           origin_x + 3, origin_y);
+  execution_info->resize (height, 3, origin_x, origin_y);
 }
 
 /* See tui-data.h.  */