- More file conversions.
This commit is contained in:
Paul Beckingham
2011-06-11 14:57:11 -04:00
parent 63e6c08fdd
commit 76b30d8d10
11 changed files with 66 additions and 39 deletions

View File

@@ -25,11 +25,14 @@
//
////////////////////////////////////////////////////////////////////////////////
#define L10N // Localization complete.
#include <sstream>
#include <stdio.h>
#include <sys/ioctl.h>
#include <Context.h>
#include <main.h>
#include <text.h>
#include <i18n.h>
#include <cmake.h>
@@ -58,9 +61,7 @@ int Context::getWidth ()
terminal_height = buff[0];
terminal_width = buff[1];
std::stringstream out;
out << "Context::getWidth: determined width of " << terminal_width << " characters";
debug (out.str ());
debug (format ("Context::getWidth: determined width of {1} characters", terminal_width));
}
}
@@ -92,9 +93,7 @@ int Context::getHeight ()
terminal_height = buff[0];
terminal_width = buff[1];
std::stringstream out;
out << "Context::getWidth: determined height of " << terminal_height << " characters";
debug (out.str ());
debug (format ("Context::getHeight: determined height of {1} characters", terminal_height));
}
}