- Code doesn't compile when HAVE_LIBNCURSES is not defined (thanks to
  John Florian).
This commit is contained in:
Paul Beckingham 2009-07-03 12:38:49 -04:00
parent 8312dc1f1d
commit 66e5c7fd64

View file

@ -146,6 +146,7 @@ int Context::getWidth ()
else
debug ("Context::getWidth: ncurses available but disabled.");
#else
std::stringstream out;
out << "Context::getWidth: no ncurses, using width of " << width << " characters";
debug (out.str ());
#endif