- Removed unused variable only detectable on Ubuntu 8.

- Removed misplaced files.
This commit is contained in:
Paul Beckingham
2008-05-26 21:39:10 -04:00
parent abef040ebc
commit 40dc0490e1
4 changed files with 0 additions and 3454 deletions

View File

@@ -2144,17 +2144,6 @@ void handleReportOverdue (const TDB& tdb, T& task, Config& conf)
////////////////////////////////////////////////////////////////////////////////
void handleReportStats (const TDB& tdb, T& task, Config& conf)
{
// Determine window size, and set table accordingly.
int width = 80;
#ifdef HAVE_LIBNCURSES
if (conf.get ("curses", true))
{
WINDOW* w = initscr ();
width = w->_maxx + 1;
endwin ();
}
#endif
// Get all the tasks.
std::vector <T> tasks;
tdb.allT (tasks);