aboutsummaryrefslogtreecommitdiffstats
path: root/heimdall-frontend/Source/main.cpp
diff options
context:
space:
mode:
authorBenjamin Dobell <benjamin.dobell@glassechidna.com.au>2011-07-06 02:58:28 +1000
committerBenjamin Dobell <benjamin.dobell@glassechidna.com.au>2011-07-06 02:58:28 +1000
commitb6ffa766b21fe2c985437aa80824a3cd4c384de8 (patch)
treeda9f5c33b33074748bd981175d36d2974ff3fb98 /heimdall-frontend/Source/main.cpp
parent35cfa391d16c9a24afdb0d163a3a0de979991ca0 (diff)
downloadexternal_heimdall-b6ffa766b21fe2c985437aa80824a3cd4c384de8.zip
external_heimdall-b6ffa766b21fe2c985437aa80824a3cd4c384de8.tar.gz
external_heimdall-b6ffa766b21fe2c985437aa80824a3cd4c384de8.tar.bz2
Major 1.3 updates
Diffstat (limited to 'heimdall-frontend/Source/main.cpp')
-rw-r--r--heimdall-frontend/Source/main.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/heimdall-frontend/Source/main.cpp b/heimdall-frontend/Source/main.cpp
index 8df987c..9db00f5 100644
--- a/heimdall-frontend/Source/main.cpp
+++ b/heimdall-frontend/Source/main.cpp
@@ -18,20 +18,20 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.*/
-// Heimdall Frontend
-#include "mainwindow.h"
-
// Qt
#include <QtGui/QApplication>
+// Heimdall Frontend
+#include "mainwindow.h"
+
using namespace HeimdallFrontend;
int main(int argc, char *argv[])
{
- QApplication a(argc, argv);
+ QApplication application(argc, argv);
- MainWindow w;
- w.show();
+ MainWindow window;
+ window.show();
- return a.exec();
+ return (application.exec());
}