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
This commit is contained in:
Hartwig
2018-08-27 21:07:11 +02:00
committed by Vadim Zeitlin
parent 3591756166
commit 372daae9dc

View File

@@ -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];