summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2015-01-22 19:44:38 +0100
committerTannin <devnull@localhost>2015-01-22 19:44:38 +0100
commit2400e2c99ed3aa44152147ea7402c7f05f984aec (patch)
treeeff19629cdbeed469e0daebcfb91f5fa3491e54e /src/mainwindow.cpp
parentaf1e3d0187930c565c23e32652ab03dc11a8b0e8 (diff)
cleanup (mostly removing unused includes)
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 6bb77a79..1ae165fb 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -61,6 +61,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include "aboutdialog.h"
#include "safewritefile.h"
#include "organizerproxy.h"
+#include "nxmaccessmanager.h"
#include <gameinfo.h>
#include <appconfig.h>
#include <utility.h>
@@ -1426,7 +1427,7 @@ HANDLE MainWindow::spawnBinaryDirect(const QFileInfo &binary, const QString &arg
}
}
-std::wstring getProcessName(DWORD processId)
+static std::wstring getProcessName(DWORD processId)
{
HANDLE process = ::OpenProcess(PROCESS_QUERY_INFORMATION, false, processId);
@@ -1948,7 +1949,7 @@ static bool BySortValue(const std::pair<UINT32, QTreeWidgetItem*> &LHS, const st
template <typename InputIterator>
-QStringList toStringList(InputIterator current, InputIterator end)
+static QStringList toStringList(InputIterator current, InputIterator end)
{
QStringList result;
for (; current != end; ++current) {
@@ -2204,7 +2205,7 @@ void MainWindow::readSettings()
}
-bool renameFile(const QString &oldName, const QString &newName, bool overwrite = true)
+static bool renameFile(const QString &oldName, const QString &newName, bool overwrite = true)
{
if (overwrite && QFile::exists(newName)) {
QFile::remove(newName);
@@ -3890,7 +3891,7 @@ void MainWindow::exportModListCSV()
}
}
-void addMenuAsPushButton(QMenu *menu, QMenu *subMenu)
+static void addMenuAsPushButton(QMenu *menu, QMenu *subMenu)
{
QPushButton *pushBtn = new QPushButton(subMenu->title());
pushBtn->setMenu(subMenu);