X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fskins2%2Fparser%2Fxmlparser.cpp;h=dcfc2cde9df85feed98d2bb3caba4f2c9a2b0719;hb=65e0358c10560e40cb8da9d50599663d5e4d88fb;hp=29c9f5ab3f567afc162f9ee99a52ab565ee3102a;hpb=4ad69b4e4a8955f6407a222b34277b382ae4ed86;p=vlc diff --git a/modules/gui/skins2/parser/xmlparser.cpp b/modules/gui/skins2/parser/xmlparser.cpp index 29c9f5ab3f..dcfc2cde9d 100644 --- a/modules/gui/skins2/parser/xmlparser.cpp +++ b/modules/gui/skins2/parser/xmlparser.cpp @@ -18,7 +18,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ #include "xmlparser.hpp" @@ -41,7 +41,7 @@ XMLParser::XMLParser( intf_thread_t *pIntf, const string &rFileName, m_pXML = xml_Create( pIntf ); if( !m_pXML ) { - msg_Err( getIntf(), "Failed to open XML parser" ); + msg_Err( getIntf(), "failed to open XML parser" ); return; } @@ -55,14 +55,14 @@ XMLParser::XMLParser( intf_thread_t *pIntf, const string &rFileName, m_pStream = stream_UrlNew( pIntf, rFileName.c_str() ); if( !m_pStream ) { - msg_Err( getIntf(), "Failed to open %s for reading", + msg_Err( getIntf(), "failed to open %s for reading", rFileName.c_str() ); return; } m_pReader = xml_ReaderCreate( m_pXML, m_pStream ); if( !m_pReader ) { - msg_Err( getIntf(), "Failed to open %s for parsing", + msg_Err( getIntf(), "failed to open %s for parsing", rFileName.c_str() ); return; } @@ -115,7 +115,7 @@ void XMLParser::LoadCatalog() if( !stat( path.c_str(), &statBuf ) ) { // DTD found - msg_Dbg( getIntf(), "Using DTD %s", path.c_str() ); + msg_Dbg( getIntf(), "using DTD %s", path.c_str() ); // Add an entry in the default catalog xml_CatalogAdd( m_pXML, "public", @@ -126,7 +126,7 @@ void XMLParser::LoadCatalog() } if( it == resPath.end() ) { - msg_Err( getIntf(), "Cannot find the skins DTD !"); + msg_Err( getIntf(), "cannot find the skins DTD"); } #endif }