Mercurial > hg > easyhg
view src/common_osx.mm @ 418:93cb9005bb6f ignore
Minor adjustments to glob syntaxes
author | Chris Cannam |
---|---|
date | Thu, 16 Jun 2011 16:46:35 +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