more globalWarningStream() globalErrorStream() use

This commit is contained in:
Garux
2018-03-21 04:12:06 +03:00
parent b1e2f26124
commit cf580963c2
28 changed files with 83 additions and 83 deletions

View File

@@ -59,7 +59,7 @@ void clipboard_copy( ClipboardCopyFunc copy ){
}
if ( !bClipped ) {
globalOutputStream() << "Unable to register Windows clipboard formats, copy/paste between editors will not be possible\n";
globalWarningStream() << "Unable to register Windows clipboard formats, copy/paste between editors will not be possible\n";
}
}

View File

@@ -126,7 +126,7 @@ void renderString( const char *s, const GLuint& tex, const unsigned int colour[3
if ( log_rect.width > 0 && log_rect.height > 0 ) {
hei = bitmap.rows = PANGO_PIXELS_CEIL( log_rect.height );//m_pixelAscent + m_pixelDescent;
wid = bitmap.width = PANGO_PIXELS_CEIL( log_rect.width );
// globalOutputStream() << width << " " << height << "rendering\n";
// globalOutputStream() << width << " " << height << " rendering\n";
bitmap.pitch = bitmap.width;
unsigned char *boo = (unsigned char *) malloc( bitmap.rows * bitmap.width );
memset( boo, 0, bitmap.rows * bitmap.width );

View File

@@ -110,7 +110,7 @@ void capture(){
}
else
{
globalOutputStream() << "Module Dependencies Failed: '" << typename Type::Name() << "' '" << APIConstructor::getName() << "'\n";
globalErrorStream() << "Module Dependencies Failed: '" << typename Type::Name() << "' '" << APIConstructor::getName() << "'\n";
}
m_cycleCheck = true;
}