Mercurial > hg > easyhg
view common_osx.mm @ 322:913d213dd427
Remove message about updating to bring changes into the working copy: it isn't always true (e.g. if you have to do a merge next)
author | Chris Cannam |
---|---|
date | Wed, 02 Mar 2011 16:29:17 +0000 |
parents | 68aebc316898 |
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