aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/upnp/XmlFunctions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/upnp/XmlFunctions.cpp')
-rw-r--r--src/modules/upnp/XmlFunctions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/upnp/XmlFunctions.cpp b/src/modules/upnp/XmlFunctions.cpp
index 1fe7d0a7a..39927fe74 100644
--- a/src/modules/upnp/XmlFunctions.cpp
+++ b/src/modules/upnp/XmlFunctions.cpp
@@ -56,7 +56,7 @@ QDomNode XmlFunctions::getNode( const QDomNode &rootNode, const QString &path )
}
if( childNode.isNull() ) {
- qDebug() << "XmlFunctions::getNode() - notice: node '" << pathItems[ i - 1 ] << "'"
+ qDebug() << "XmlFunctions::getNode() - Notice: node '" << pathItems[ i - 1 ] << "'"
<< " does not exist (root=" << rootNode.nodeName() << " path=" << path << ")." << endl;
}
@@ -106,7 +106,7 @@ QString XmlFunctions::getNodeValue( const QDomNode &rootNode, const QString &pat
// Added code to avoid more assertion errors, and trace the cause.
if( rootNode.isNull() )
{
- qWarning() << "XmlFunctions::getNodeValue: Attempted to request '" << path << "' on null root node." << endl;
+ qWarning() << "XmlFunctions::getNodeValue: attempted to request '" << path << "' on null root node." << endl;
return QString();
}