Mercurial > hg > easyhg
view src/common_osx.mm @ 666:98a7fbbe9d88 qt5
Merge from default branch, and build fixes
author | Chris Cannam |
---|---|
date | Fri, 27 May 2016 09:55:56 +0100 |
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