view src/common_osx.mm @ 630:bddd0924109f

* Fixed bug where ctrl+shift+s wouldn't work because of "ambiguous shortcut overload"
author Sam Izzo <sam@humbug.net>
date Mon, 27 Aug 2012 00:52:44 +1000
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