Yingdi Yu | 614db14 | 2013-10-09 16:35:53 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2013, Regents of the University of California |
| 4 | * Yingdi Yu |
| 5 | * |
| 6 | * BSD license, See the LICENSE file for more information |
| 7 | * |
| 8 | * Author: Yingdi Yu <yingdi@cs.ucla.edu> |
| 9 | */ |
| 10 | |
| 11 | #include <QApplication> |
| 12 | |
| 13 | #include "chronochat.h" |
| 14 | |
| 15 | int main(int argc, char *argv[]) |
| 16 | { |
| 17 | QApplication app(argc, argv); |
| 18 | |
| 19 | // #ifdef __APPLE__ |
| 20 | // app.setWindowIcon(QIcon(":/demo.icns")); |
| 21 | // #else |
| 22 | // app.setWindowIcon(QIcon(":/images/icon_large.png")); |
| 23 | // #endif |
| 24 | |
| 25 | ChronoChat dialog; |
| 26 | |
| 27 | dialog.show (); |
| 28 | |
| 29 | return app.exec(); |
| 30 | } |