Mercurial > hg > easyhg
view src/common_osx.mm @ 411:d0ebd797c5a1
Ah, OK -- it seems we get escapes for backslashes generally, so handle that
author | Chris Cannam |
---|---|
date | Tue, 07 Jun 2011 11:00:16 +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