minor type-o fix, thanks Semushin Slava

This commit is contained in:
fluxgen 2006-03-20 22:23:07 +00:00
parent 8e4f538cf9
commit e396fd423e

View file

@ -229,10 +229,10 @@ void XFontImp::rotate(float angle) {
vert_w, vert_h, 8, 0); vert_w, vert_h, 8, 0);
if (I1 == None) { if (I1 == None) {
cerr<<"RotFont: "<<_FBTKTEXT(Error, CreateXImage, cerr << "RotFont: " << _FBTKTEXT(Error, CreateXImage,
"Cant create XImage", "Can't create XImage",
"XCreateImage failed for some reason") "XCreateImage failed for some reason")
<<"."<<endl; << "." << endl;
free(vertdata); free(vertdata);
delete m_rotfont; delete m_rotfont;
m_rotfont = 0; m_rotfont = 0;
@ -271,10 +271,10 @@ void XFontImp::rotate(float angle) {
(char *)bitdata, bit_w, bit_h, 8, 0); (char *)bitdata, bit_w, bit_h, 8, 0);
if (I2 == None) { if (I2 == None) {
cerr<<"XFontImp: "<<_FBTKTEXT(Error, CreateXImage, cerr << "XFontImp: " <<_FBTKTEXT(Error, CreateXImage,
"Cant create XImage", "Can't create XImage",
"XCreateImage failed for some reason") "XCreateImage failed for some reason")
<<"."<<endl; << "." << endl;
free(bitdata); free(bitdata);
delete m_rotfont; delete m_rotfont;
m_rotfont = 0; m_rotfont = 0;