Mercurial > hg > easyhg
view common_osx.mm @ 332:70ad221e1619
Improve the Annotate output
| author | Chris Cannam | 
|---|---|
| date | Sun, 13 Mar 2011 10:59:34 +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
