Mercurial > hg > easyhg
view common.cpp @ 53:3c46b2ac45d3
* Put proper labels &c in changeset items; colour branches and users; etc
author | Chris Cannam |
---|---|
date | Fri, 12 Nov 2010 16:48:18 +0000 |
parents | 5986d0758069 |
children | f583e44d9d31 |
line wrap: on
line source
/**************************************************************************** ** Copyright (C) Jari Korhonen, 2010 (under lgpl) ****************************************************************************/ #include "common.h" QString getSystem() { #ifdef Q_WS_X11 return QString("Linux"); #endif #ifdef Q_WS_MAC return QString("Mac"); #endif #ifdef Q_WS_WIN return QString("Windows"); #endif return QString(""); } QString getHgBinaryName() { if (getSystem() == "Windows") return QString("hg.exe"); else return QString("hg"); } QString getHgDirName() { if (getSystem() == "Windows") { return QString(".hg\\"); } else { return QString(".hg/"); } }