diff -r ef0373b55136 -r 758a864f9613 tests/manual/bearerex/bearerex.cpp --- a/tests/manual/bearerex/bearerex.cpp Fri Sep 17 08:34:18 2010 +0300 +++ b/tests/manual/bearerex/bearerex.cpp Mon Oct 04 01:19:32 2010 +0300 @@ -433,6 +433,7 @@ iapLineEdit->setText(config.name()+" ("+config.identifier()+")"); } } + newState(m_NetworkSession->state()); // Update the "(open)" if (m_NetworkSession->configuration().type() == QNetworkConfiguration::UserChoice) { QVariant identifier = m_NetworkSession->sessionProperty("UserChoiceConfiguration"); @@ -523,7 +524,7 @@ QString active; if (m_NetworkSession->isOpen()) { - active = " (O)"; + active = " (open)"; } stateLineEdit->setText(stateString(state)+active); }