aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/src-cpp/framework-OSInterface_private.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-02-02 12:51:09 -0500
committerKen Moore <ken@ixsystems.com>2018-02-02 12:51:09 -0500
commitd1bacddf914c6f1ab8d6e42e6c38cdca91a02b18 (patch)
treed1bec3165c952035435588e7eb7089f2a077aab3 /src-qt5/src-cpp/framework-OSInterface_private.cpp
parentAnother couple tweaks to the networking notification systems. (diff)
downloadlumina-d1bacddf914c6f1ab8d6e42e6c38cdca91a02b18.tar.gz
lumina-d1bacddf914c6f1ab8d6e42e6c38cdca91a02b18.tar.bz2
lumina-d1bacddf914c6f1ab8d6e42e6c38cdca91a02b18.zip
Oops - accidentally left a code stub for some later work...
Diffstat (limited to 'src-qt5/src-cpp/framework-OSInterface_private.cpp')
-rw-r--r--src-qt5/src-cpp/framework-OSInterface_private.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/src-cpp/framework-OSInterface_private.cpp b/src-qt5/src-cpp/framework-OSInterface_private.cpp
index 6275b3f1..86f960e1 100644
--- a/src-qt5/src-cpp/framework-OSInterface_private.cpp
+++ b/src-qt5/src-cpp/framework-OSInterface_private.cpp
@@ -308,7 +308,7 @@ void OSInterface::syncNetworkInfo(OSInterface *os, QHash<QString, QVariant> *has
addressList[j].ip().toIPv4Address(&ok);
}
if(ok){ active = netconfigL[i]; break; } //found a good one with a valid IPv4
- else if(active.
+ //else if(active.
}
if(!active.isValid()){ active = netman->activeConfiguration(); } //use the default Qt-detected interface
//Type of connection
bgstack15