Mercurial > hg > easyhg
view src/common_osx.mm @ 721:744933aba33a
Ensure black pen (otherwise this becomes invisible with macOS in dark mode)
author | Chris Cannam |
---|---|
date | Thu, 13 Dec 2018 11:07:12 +0000 |
parents | 2d3f1e5d8638 |
children |
line wrap: on
line source
#include "common.h" #include <QString> #ifdef Q_OS_MAC #include <Foundation/Foundation.h> QString getUserRealName() { NSString *s = NSFullUserName(); return QString::fromLocal8Bit([s UTF8String]); } #endif