Use HTTPS with Trac links.

This commit is contained in:
Bryan Petty
2017-07-04 13:15:14 -06:00
parent 823f75c739
commit ed173ed91e
29 changed files with 34 additions and 34 deletions

View File

@@ -285,7 +285,7 @@ void XmlTestCase::PI()
void XmlTestCase::Escaping()
{
// Verify that attribute values are escaped correctly, see
// http://trac.wxwidgets.org/ticket/12275
// https://trac.wxwidgets.org/ticket/12275
const char *xmlText =
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
@@ -439,7 +439,7 @@ void XmlTestCase::SetRoot()
CPPUNIT_ASSERT( !doc.IsOk() );
wxXmlNode *root = new wxXmlNode(wxXML_ELEMENT_NODE, "root");
// Test for the problem of http://trac.wxwidgets.org/ticket/13135
// Test for the problem of https://trac.wxwidgets.org/ticket/13135
doc.SetRoot( root );
wxXmlNode *docNode = doc.GetDocumentNode();
CPPUNIT_ASSERT( docNode && root == docNode->GetChildren() );