Mercurial > hg > easyhg
view common.cpp @ 22:465fbf9ad5a9
Tries to show hg serve ipv6 address correctly (at least for browser, dont know about hg itself).
author | Jari Korhonen <jtkorhonen@gmail.com> |
---|---|
date | Tue, 18 May 2010 23:56:20 +0300 |
parents | a9098eba2ee5 |
children | 45bfb8dc1faf |
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 getDiffMergeDefaultPath() { if (getSystem() == "Windows") return QString("c:\\program files\\sourcegear\\diffmerge\\diffmerge.exe"); else return QString("/usr/bin/diffmerge"); } QString getHgDirName() { if (getSystem() == "Windows") { return QString(".hg\\"); } else { return QString(".hg/"); } }