Mercurial > hg > easyhg
view src/common_osx.mm @ 385:5cc0d897eb26
Avoid crash when one of the data output callbacks is called after m_proc has already been reset (fixing #132)
author | Chris Cannam <chris.cannam@eecs.qmul.ac.uk> |
---|---|
date | Tue, 24 May 2011 13:29:27 +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