From 7369b19ead67d35a6fac9873c6b688f9b4639023 Mon Sep 17 00:00:00 2001 From: Stas Degteff Date: Tue, 9 Aug 2005 12:26:08 +0000 Subject: [PATCH] Fix after bugfix in gvidbase.cpp. Thanks to Ianos Gnatiuc 2:469/335.155 --- golded3/geedit.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/golded3/geedit.cpp b/golded3/geedit.cpp index c02f0c5..b8ddf02 100644 --- a/golded3/geedit.cpp +++ b/golded3/geedit.cpp @@ -1766,8 +1766,10 @@ void IEclass::savefile(int __status) { GFTRK("Editsavefile"); // Turn off cursor and put up a wait window +#if defined(__USE_NCURSES__) || !defined(__WIN32__) /* Fix after bugfix w9x console bug in gvidbase.cpp */ int wascursoron = not vcurhidden(); cursoroff(); +#endif strcpy(statbak, information); update_statusline(LNG->Wait+1); @@ -1812,8 +1814,10 @@ void IEclass::savefile(int __status) { update_statusline(statbak); +#if defined(__USE_NCURSES__) || !defined(__WIN32__) /* Fix after bugfix w9x console bug in gvidbase.cpp */ if(wascursoron) cursoron(); +#endif GFTRK(NULL); }