Mercurial > hg > easyhg
view common_osx.mm @ 204:d256cc418fa3
* Fix failure to enable Add button when a "Removed" file was selected
author | Chris Cannam |
---|---|
date | Tue, 04 Jan 2011 15:22:07 +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