Skip to content

Commit

Permalink
Print applications dir to console
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKepzie committed Sep 2, 2015
1 parent c2d5612 commit d3f31b3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/libs/installer/packagemanagercoredata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
****************************************************************************/
#include "packagemanagercoredata.h"

#include <iostream>
#include "errors.h"
#include "fileutils.h"
#include "qsettingswrapper.h"
Expand Down Expand Up @@ -79,6 +80,7 @@ PackageManagerCoreData::PackageManagerCoreData(const QHash<QString, QString> &va
dir = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation).value(0);
# endif
#endif
std::cout << "ApplicationsDir = " << dir.toStdString() << std::endl;
m_variables.insert(QLatin1String("ApplicationsDir"), dir);

#ifdef Q_OS_WIN
Expand Down

0 comments on commit d3f31b3

Please sign in to comment.