Mercurial > hg > easyhg
view src/common_osx.mm @ 645:e2f6bb97cc22
Toolbar spacing adjustments; avoid using unified toolbar on Mac because it breaks the left toolbar with Qt 4.8
author | Chris Cannam |
---|---|
date | Fri, 11 Jan 2013 10:29:04 +0000 |
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