view src/common_osx.mm @ 453:f2ab2cdd000b authfile_refactor

Associate username with pathless URL, as well as password
author Chris Cannam
date Wed, 29 Jun 2011 15:37:11 +0100
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