view src/common_osx.mm @ 515:fc35aa6d433e

A better effort to do the right thing wrt marking changesets as closed based on their relationship to closed heads
author Chris Cannam
date Thu, 20 Oct 2011 11:36:49 +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