--- kdeutils-4.4.5/kcalc/kcalc_const_menu.cpp 2009-01-27 15:01:08.000000000 -0800 +++ kdeutils-4.4.5_fix/kcalc/kcalc_const_menu.cpp 2010-10-01 09:01:02.910008125 -0700 @@ -36,15 +36,14 @@ QFile file(KGlobal::dirs()->findResource("appdata", "scienceconstants.xml")); if (!file.open(QIODevice::ReadOnly)) { - kDebug("Did not find file \"scienceconstants.xml\"." - "No constants will be available."); + kDebug() << "Did not find file \"scienceconstants.xml\"." << "No constants will be available."; return; } if (!doc.setContent(&file)) { file.close(); - kDebug("The file \"scienceconstants.xml\" does not seem" + kDebug() << "The file \"scienceconstants.xml\" does not seem" "to be a valid description file." - "No constants will be available."); + "No constants will be available."; return; } file.close();