The port of Dolphin to categorized logging created errors in one
specific point only, in main.cpp:
undefined reference to `DolphinDebug()'
I couldn't spot any obvious error, so for now I did it the bad way
(warnings should not be commented out!) to keep it building while a
real solution is found.
CCMAIL: emmanuelpescosta099@gmail.com
if (url.isValid()) {
urls.append(url);
} else {
- qCWarning(DolphinDebug) << "Invalid URL: " << str;
+ // qCWarning(DolphinDebug) << "Invalid URL: " << str;
}
}
if (className == QLatin1String("DolphinMainWindow")) {
m_mainWindow->restore(1);
} else {
- qCWarning(DolphinDebug) << "Unknown class " << className << " in session saved data!";
+ // qCWarning(DolphinDebug) << "Unknown class " << className << " in session saved data!";
}
}