view common_osx.mm @ 277:b6e4643d6c05

Remove no-longer-used icon files
author Chris Cannam
date Wed, 09 Feb 2011 12:02:53 +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