summaryrefslogtreecommitdiff
path: root/src/executableslist.cpp
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2015-01-24 19:34:12 +0100
committerTannin <devnull@localhost>2015-01-24 19:34:12 +0100
commitc3a95bdef1d989a54684b966e042b12bf682046d (patch)
tree83a09ca9252b9d5a060acb415b8c3c0923cfe2c3 /src/executableslist.cpp
parent9edc39633b82b5e02d33c4b0a395fe110af28eb4 (diff)
parentf756aede08edb315ebe5882098191ebfe971fd81 (diff)
Merge with branch1.2
Diffstat (limited to 'src/executableslist.cpp')
-rw-r--r--src/executableslist.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/executableslist.cpp b/src/executableslist.cpp
index 65a2ea80..35bb30ae 100644
--- a/src/executableslist.cpp
+++ b/src/executableslist.cpp
@@ -29,7 +29,7 @@ using namespace MOBase;
using namespace MOShared;
-QDataStream &operator<<(QDataStream &out, const Executable &obj)
+static QDataStream &operator<<(QDataStream &out, const Executable &obj)
{
out << obj.m_Title
<< obj.m_BinaryInfo.absoluteFilePath()
@@ -42,7 +42,7 @@ QDataStream &operator<<(QDataStream &out, const Executable &obj)
return out;
}
-QDataStream &operator>>(QDataStream &in, Executable &obj)
+static QDataStream &operator>>(QDataStream &in, Executable &obj)
{
QString binaryTemp;
int closeStyleTemp;