Mercurial > hg > easyhg
view src/common_osx.mm @ 642:b16e8ef6919b
Back out commit:5dc24f8 and instead move the extensions setting to its own tab (allowing us to provide a bit more information about what it's for)
author | Chris Cannam |
---|---|
date | Fri, 19 Oct 2012 12:08:11 +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