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

@@ -1010,7 +1010,7 @@ void wxRichTextCtrl::OnMoveMouse(wxMouseEvent& event)
&& (distance > 4)
#endif
// Don't select to the end of the container when going outside the window
// For analysis, see http://trac.wxwidgets.org/ticket/15714
// For analysis, see https://trac.wxwidgets.org/ticket/15714
&& (! (hitObj == (& m_buffer) && ((hit & wxRICHTEXT_HITTEST_OUTSIDE) != 0)))
)
{
@@ -3042,7 +3042,7 @@ bool wxRichTextCtrl::RecreateBuffer(const wxSize& size)
return false;
if (!m_bufferBitmap.IsOk() || m_bufferBitmap.GetWidth() < sz.x || m_bufferBitmap.GetHeight() < sz.y)
// As per http://trac.wxwidgets.org/ticket/14403, prevent very inefficient fix to alpha bits of
// As per https://trac.wxwidgets.org/ticket/14403, prevent very inefficient fix to alpha bits of
// destination by making the backing bitmap 24-bit. Note that using 24-bit depth breaks painting of
// scrolled areas on wxWidgets 2.8.
#if defined(__WXMSW__) && wxCHECK_VERSION(3,0,0)