From 39ea52494306e61c3850de0f0a3a1e7b2fe742cd Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 15 Oct 2022 21:19:06 +0200 Subject: [PATCH] Replace a reference to a very old SourceForge ticket number Not sure if it's the exact same ticket or if it's even relevant 18 years later, but it seems to be close. --- src/gtk/dcmemory.cpp | 2 +- src/gtk/dcscreen.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gtk/dcmemory.cpp b/src/gtk/dcmemory.cpp index f2e20da024..a12d8570d0 100644 --- a/src/gtk/dcmemory.cpp +++ b/src/gtk/dcmemory.cpp @@ -50,7 +50,7 @@ void wxMemoryDCImpl::Init() m_context = gdk_pango_context_get(); // Note: The Sun customised version of Pango shipping with Solaris 10 - // crashes if the language is left NULL (see bug 1374114) + // crashes if the language is left null (see #2962) pango_context_set_language( m_context, gtk_get_default_language() ); m_layout = pango_layout_new( m_context ); m_fontdesc = pango_font_description_copy( pango_context_get_font_description( m_context ) ); diff --git a/src/gtk/dcscreen.cpp b/src/gtk/dcscreen.cpp index 1041e4fcca..8e14e70f44 100644 --- a/src/gtk/dcscreen.cpp +++ b/src/gtk/dcscreen.cpp @@ -33,7 +33,7 @@ void wxScreenDCImpl::Init() m_context = gdk_pango_context_get(); // Note: The Sun customised version of Pango shipping with Solaris 10 - // crashes if the language is left NULL (see bug 1374114) + // crashes if the language is left null (see bug #2962) pango_context_set_language( m_context, gtk_get_default_language() ); m_layout = pango_layout_new( m_context ); // m_fontdesc = pango_font_description_copy( widget->style->font_desc );