KDEBUG -> kdebug

svn path=/trunk/kdegraphics/kdvi/; revision=19213
This commit is contained in:
Alex Zepeda 1999-04-05 21:06:42 +00:00
parent 508d0f55fb
commit a002b09e63
2 changed files with 2 additions and 2 deletions

View file

@ -262,7 +262,7 @@ void dviWindow::setPaper( const char *paper )
float w, h;
if (!kdviprefs::paperSizes( paper, w, h ))
{
KDEBUG( KDEBUG_WARN, 0, "Unknown paper type!");
kdebug(KDEBUG_WARN, 4300, "Unknown paper type!");
// A4 paper is used as default, if paper is unknown
w = 21.0/2.54;
h = 29.7/2.54;

View file

@ -272,7 +272,7 @@ void print::okPressed()
cmd += " &";
KDEBUG( KDEBUG_INFO, 0, QString( "About to run: " + cmd ) );
kdebug(KDEBUG_INFO, 4300,"About to run: %s", cmd);
system( cmd );
accept();
}