From b6ffa766b21fe2c985437aa80824a3cd4c384de8 Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Wed, 6 Jul 2011 02:58:28 +1000 Subject: Major 1.3 updates --- heimdall-frontend/Source/main.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'heimdall-frontend/Source/main.cpp') 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 +// 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()); } -- cgit v1.2.3