diff options
author | Tobias Markmann <tm@ayena.de> | 2015-06-19 12:40:30 (GMT) |
---|---|---|
committer | Kevin Smith <kevin.smith@isode.com> | 2015-07-08 07:07:57 (GMT) |
commit | 07544ee46ffda935714dfc36e5bc5582a7d8c2b0 (patch) | |
tree | 3860dd6ffeb295237485383b7d0b1325ad6b9a60 | |
parent | 4f26d4f044f909a73a1ce3183e21419e18a0dd43 (diff) | |
download | swift-07544ee46ffda935714dfc36e5bc5582a7d8c2b0.zip swift-07544ee46ffda935714dfc36e5bc5582a7d8c2b0.tar.bz2 |
Rearranged initialization list to be in sync with sequence in header
Test-Information:
Still builds
Change-Id: I93cd349364093eae320104b5b551c25da47b1d74
-rw-r--r-- | Swiften/FileTransfer/LocalJingleTransportCandidateGenerator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/FileTransfer/LocalJingleTransportCandidateGenerator.cpp b/Swiften/FileTransfer/LocalJingleTransportCandidateGenerator.cpp index 483fdb3..6ef0e6a 100644 --- a/Swiften/FileTransfer/LocalJingleTransportCandidateGenerator.cpp +++ b/Swiften/FileTransfer/LocalJingleTransportCandidateGenerator.cpp @@ -40,10 +40,10 @@ LocalJingleTransportCandidateGenerator::LocalJingleTransportCandidateGenerator( s5bProxy(s5bProxy), ownJID(ownJID), idGenerator(idGenerator), - options_(options), triedServerInit_(false), triedForwarding_(false), - triedProxyDiscovery_(false) { + triedProxyDiscovery_(false), + options_(options) { } LocalJingleTransportCandidateGenerator::~LocalJingleTransportCandidateGenerator() { |