Explorar el Código

replacing clear()

Berk Geveci hace 24 años
padre
commit
de452f3fef
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      Source/CursesDialog/cmCursesStandardIncludes.h

+ 2 - 1
Source/CursesDialog/cmCursesStandardIncludes.h

@@ -30,7 +30,8 @@ inline void curses_move(unsigned int x, unsigned int y)
 
 inline void curses_clear()
 {
-  clear();
+  erase();
+  clearok(stdscr, TRUE);
 }
 
 #undef move