Mercurial > hg > easyhg
view common_osx.mm @ 291:2e34e7ee7baf more_information_dialog
Make several operations use the new more-information dialog
author | Chris Cannam |
---|---|
date | Mon, 21 Feb 2011 15:55:39 +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