Mercurial > hg > easyhg
annotate main.cpp @ 61:bf57a16315bd
* Some experimental cutbacks to interface
author | Chris Cannam |
---|---|
date | Wed, 17 Nov 2010 11:48:58 +0000 |
parents | f583e44d9d31 |
children | 07405f3a428b |
rev | line source |
---|---|
Chris@57 | 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ |
Chris@57 | 2 |
Chris@57 | 3 /* |
Chris@57 | 4 EasyMercurial |
Chris@57 | 5 |
Chris@57 | 6 Based on HgExplorer by Jari Korhonen |
Chris@57 | 7 Copyright (c) 2010 Jari Korhonen |
Chris@57 | 8 Copyright (c) 2010 Chris Cannam |
Chris@57 | 9 Copyright (c) 2010 Queen Mary, University of London |
Chris@57 | 10 |
Chris@57 | 11 This program is free software; you can redistribute it and/or |
Chris@57 | 12 modify it under the terms of the GNU General Public License as |
Chris@57 | 13 published by the Free Software Foundation; either version 2 of the |
Chris@57 | 14 License, or (at your option) any later version. See the file |
Chris@57 | 15 COPYING included with this distribution for more information. |
Chris@57 | 16 */ |
jtkorhonen@0 | 17 |
jtkorhonen@0 | 18 #include <QApplication> |
jtkorhonen@0 | 19 |
jtkorhonen@0 | 20 #include "mainwindow.h" |
jtkorhonen@0 | 21 |
jtkorhonen@0 | 22 int main(int argc, char *argv[]) |
jtkorhonen@0 | 23 { |
Chris@61 | 24 QApplication::setOrganizationName("easymercurial"); |
Chris@61 | 25 QApplication::setOrganizationDomain("easymercurial.org"); |
Chris@61 | 26 QApplication::setApplicationName(QApplication::tr("EasyMercurial")); |
jtkorhonen@0 | 27 |
jtkorhonen@0 | 28 QApplication app(argc, argv); |
jtkorhonen@0 | 29 MainWindow mainWin; |
jtkorhonen@0 | 30 mainWin.show(); |
jtkorhonen@0 | 31 return app.exec(); |
jtkorhonen@0 | 32 } |