view src/common_osx.mm @ 556:04f18b2a32e8 find

Add forgotten files. So busy looking at the test search results, I totally forget to read what the program is actually telling me!
author Chris Cannam
date Thu, 23 Feb 2012 11:44:50 +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