From 372daae9dcf7982fd56c5c1cf833892f1ddbe022 Mon Sep 17 00:00:00 2001 From: Hartwig Date: Mon, 27 Aug 2018 21:07:11 +0200 Subject: [PATCH] Remove stray backspace character from wxCocoaDataViewControl Somehow, a raw ASCII ^H made its way into this source file. Remove it. See https://github.com/wxWidgets/wxWidgets/pull/901 --- src/osx/cocoa/dataview.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osx/cocoa/dataview.mm b/src/osx/cocoa/dataview.mm index 23b0a2511e..eefabd7ed1 100644 --- a/src/osx/cocoa/dataview.mm +++ b/src/osx/cocoa/dataview.mm @@ -2520,7 +2520,7 @@ void wxCocoaDataViewControl::SetRowHeight(int height) int wxCocoaDataViewControl::GetDefaultRowHeight() const { - // Custom setup of NSLayoutManager is necessary to match NSTableView sizing. + // Custom setup of NSLayoutManager is necessary to match NSTableView sizing. // See https://stackoverflow.com/questions/17095927/dynamically-changing-row-height-after-font-size-of-entire-nstableview-nsoutlin NSLayoutManager *lm = [[NSLayoutManager alloc] init]; [lm setTypesetterBehavior:NSTypesetterBehavior_10_2_WithCompatibility];