diff options
| author | Tannin <devnull@localhost> | 2014-11-14 23:33:49 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2014-11-14 23:33:49 +0100 |
| commit | d23466f036618760de16ee874a3c076f05fe6087 (patch) | |
| tree | d82effc7d9294284ec886b8a2d65da6c7b726485 | |
| parent | 53896e66f113519253892903404264b4e49ab8a6 (diff) | |
- fixed manifest for qt5
- download messages can now be sent from different user accounts
| -rw-r--r-- | src/dlls.manifest.qt5 | 12 | ||||
| -rw-r--r-- | src/singleinstance.cpp | 2 |
2 files changed, 12 insertions, 2 deletions
diff --git a/src/dlls.manifest.qt5 b/src/dlls.manifest.qt5 index 5a22c2a8..59918f2b 100644 --- a/src/dlls.manifest.qt5 +++ b/src/dlls.manifest.qt5 @@ -7,12 +7,20 @@ <file name="Qt5Core.dll"/>
<file name="Qt5Declarative.dll"/>
<file name="Qt5Gui.dll"/>
- <file name="Qt5Quick.dll"/>
+ <file name="Qt5Multimedia.dll"/>
+ <file name="Qt5MultimediaWidgets.dll"/>
<file name="Qt5Network.dll"/>
+ <file name="Qt5OpenGL.dll"/>
+ <file name="Qt5Positioning.dll"/>
+ <file name="Qt5PrintSupport.dll"/>
+ <file name="Qt5Qml.dll"/>
+ <file name="Qt5Quick.dll"/>
+ <file name="Qt5Sensors.dll"/>
<file name="Qt5Script.dll"/>
<file name="Qt5Sql.dll"/>
<file name="Qt5Svg.dll"/>
+ <file name="Qt5WebKit.dll"/>
+ <file name="Qt5WebKitWidgets.dll"/>
<file name="Qt5Widgets.dll"/>
- <file name="Qt5Xml.dll"/>
<file name="Qt5XmlPatterns.dll"/>
</assembly>
\ No newline at end of file diff --git a/src/singleinstance.cpp b/src/singleinstance.cpp index a1928523..dcb0fc78 100644 --- a/src/singleinstance.cpp +++ b/src/singleinstance.cpp @@ -54,6 +54,8 @@ SingleInstance::SingleInstance(bool forcePrimary, QObject *parent) : }
if (m_PrimaryInstance) {
connect(&m_Server, SIGNAL(newConnection()), this, SLOT(receiveMessage()));
+ // has to be called before listen
+ m_Server.setSocketOptions(QLocalServer::WorldAccessOption);
m_Server.listen(s_Key);
}
}
|
