mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 15:03:53 +02:00
assignment-client shouldn't try to save contents of its nonexistent address bar. interface still needs to save the address.
This commit is contained in:
parent
50eecb15b3
commit
28ad80936a
2 changed files with 1 additions and 1 deletions
|
@ -465,6 +465,7 @@ Application::Application(int& argc, char** argv, QElapsedTimer &startup_time) :
|
|||
addressManager->setOrientationGetter(getOrientationForPath);
|
||||
|
||||
connect(addressManager.data(), &AddressManager::rootPlaceNameChanged, this, &Application::updateWindowTitle);
|
||||
connect(this, &QCoreApplication::aboutToQuit, addressManager.data(), &AddressManager::storeCurrentAddress);
|
||||
|
||||
#ifdef _WIN32
|
||||
WSADATA WsaData;
|
||||
|
|
|
@ -35,7 +35,6 @@ AddressManager::AddressManager() :
|
|||
_positionGetter(NULL),
|
||||
_orientationGetter(NULL)
|
||||
{
|
||||
connect(qApp, &QCoreApplication::aboutToQuit, this, &AddressManager::storeCurrentAddress);
|
||||
}
|
||||
|
||||
bool AddressManager::isConnected() {
|
||||
|
|
Loading…
Reference in a new issue