Removed some debug outputs

Users don't need to seem them. If an info is really important, it should be shown in a message box, IMHO.
This commit is contained in:
Tsu Jan
2019-10-17 18:06:08 +03:30
committed by Alf Gaida
parent fbf23a1b1a
commit e9d6b36624
3 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ QString get_kb_layout_dir()
QString k(QLatin1String(KB_LAYOUT_DIR));
QDir d(k);
qDebug() << "default KB_LAYOUT_DIR: " << k;
//qDebug() << "default KB_LAYOUT_DIR: " << k;
if (d.exists())
{
@@ -35,7 +35,7 @@ QString get_kb_layout_dir()
if (d.exists())
return QCoreApplication::applicationDirPath() + "/../Resources/kb-layouts/";
#endif
qDebug() << "Cannot find KB_LAYOUT_DIR. Default:" << k;
//qDebug() << "Cannot find KB_LAYOUT_DIR. Default:" << k;
return QString();
}