killed warning; unused variable

issue680^2
Marius Kintel 2014-03-01 15:15:13 -05:00
parent 52ceb71444
commit bbfddcdd85
1 changed files with 1 additions and 1 deletions

View File

@ -551,7 +551,7 @@ int gui(vector<string> &inputFiles, const fs::path &original_path, int argc, cha
new MainWindow(assemblePath(original_path, infile));
}
#else
MainWindow *m = new MainWindow(assemblePath(original_path, inputFiles[0]));
new MainWindow(assemblePath(original_path, inputFiles[0]));
#endif
app.connect(&app, SIGNAL(lastWindowClosed()), &app, SLOT(quit()));
int rc = app.exec();