Mercurial > hg > easyhg
view common.cpp @ 36:5986d0758069
Version 0.5.3. Fixed .hgignore editing in windows.
author | Jari Korhonen <jtkorhonen@gmail.com> |
---|---|
date | Sat, 19 Jun 2010 03:10:51 +0300 |
parents | 45bfb8dc1faf |
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/"); } }