diff options
author | Neil <nyamatongwe@gmail.com> | 2023-06-25 08:54:07 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2023-06-25 08:54:07 +1000 |
commit | 69ea8169cbc562bda68a46ba00d44c87ffc5a15e (patch) | |
tree | 49392ba329ef190536085ded49358ebe7b0c4626 /gtk | |
parent | 816095e1fabb5d67218b1ef24b28476bbf4a4235 (diff) | |
download | scintilla-mirror-69ea8169cbc562bda68a46ba00d44c87ffc5a15e.tar.gz |
Strip line end white-space.
Diffstat (limited to 'gtk')
-rwxr-xr-x | gtk/PlatGTK.cxx | 2 | ||||
-rwxr-xr-x | gtk/ScintillaGTK.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index e939b87fb..0ff571369 100755 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -370,7 +370,7 @@ UniquePangoContext SurfaceImpl::MeasuringContext() { pango_context_set_base_dir(contextMeasure.get(), direction); pango_cairo_context_set_font_options(contextMeasure.get(), fontOptions); pango_context_set_language(contextMeasure.get(), language); - + return contextMeasure; } diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index ab415e743..003cc5ba8 100755 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -1168,7 +1168,7 @@ void ScintillaGTK::SetScrollBars() { // On GTK, unlike other platforms, modifying scrollbars inside some events including // resizes causes problems. Deferring the modification to a lower priority (125) idle // event avoids the problems. This code did not always work when the priority was - // higher than GTK's resize (GTK_PRIORITY_RESIZE=110) or redraw + // higher than GTK's resize (GTK_PRIORITY_RESIZE=110) or redraw // (GDK_PRIORITY_REDRAW=120) idle tasks. scrollBarIdleID = gdk_threads_add_idle_full(priorityScrollBar, [](gpointer pSci) -> gboolean { |