Mercurial > hg > easyhg
view common_osx.mm @ 201:0844b4d8d911
* Ensure explorer.exe invocation gets backslashes as directory separators, not forward slashes
author | Chris Cannam |
---|---|
date | Tue, 04 Jan 2011 14:05: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