Skip to content

Commit 6b16b73

Browse files
committed
Fixed linux compiles
1 parent 456d9b4 commit 6b16b73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/viewer/Application.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ QVector<XplaneInstallation> Application::get_installations() const
229229
#if WIN || APL
230230
installer_path = QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation) + "/" + install_file_name;
231231
#else
232-
installer_path = QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + "/.x-plane/" + install_file_name;
232+
installer_path = QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + "/.x-plane/" + install_file_name;
233233
#endif
234234

235235
QFileInfo info(installer_path);
@@ -303,7 +303,7 @@ int Application::run(int &argc, char **argv)
303303
app.setStyleSheet(style_sheet);
304304
#else
305305
QApplication::setStyle(QStyleFactory::create("Fusion"));
306-
application app(argc, argv);
306+
Application app(argc, argv);
307307
#endif
308308

309309
return exec();

0 commit comments

Comments
 (0)