Mercurial > hg > easyhg
view src/common_osx.mm @ 661:005b4530c6ee
Be more flexible about the sorts of warning message we can remove in incoming
author | Chris Cannam |
---|---|
date | Fri, 09 Nov 2012 14:48:02 +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