diff --git a/src/blackgui/infowindowcomponent.ui b/src/blackgui/infowindowcomponent.ui index 598603975..a2fbc3432 100644 --- a/src/blackgui/infowindowcomponent.ui +++ b/src/blackgui/infowindowcomponent.ui @@ -7,7 +7,7 @@ 0 0 300 - 180 + 185 @@ -17,7 +17,7 @@ QFrame#fr_InfoWindow { border-style: solid; border-width: 2px; - border-radius: 20px; + border-radius: 10px; border-color: white; } @@ -51,19 +51,19 @@ QTextEdit { - 0 + 2 - 0 + 2 - 0 + 2 - 0 + 2 - 0 + 2 diff --git a/src/blackmisc/setnetwork.cpp b/src/blackmisc/setnetwork.cpp index 70cadab44..1743dd957 100644 --- a/src/blackmisc/setnetwork.cpp +++ b/src/blackmisc/setnetwork.cpp @@ -183,7 +183,7 @@ namespace BlackMisc changedFlag = this->m_trafficNetworkServers.contains(&CServer::getName, server.getName()); this->m_trafficNetworkServers.removeIf(&CServer::getName, server.getName()); } - msgs.push_back(CStatusMessage::getInfoMessage("set current server", CStatusMessage::TypeSettings)); + msgs.push_back(CStatusMessage::getInfoMessage("Set current server", CStatusMessage::TypeSettings)); return msgs; } else if (path == CSettingsNetwork::ValueBookingServiceUrl()) diff --git a/src/blacksim/simulatorinfolist.h b/src/blacksim/simulatorinfolist.h index 6a2676b2f..13ec3dee7 100644 --- a/src/blacksim/simulatorinfolist.h +++ b/src/blacksim/simulatorinfolist.h @@ -15,20 +15,18 @@ namespace BlackSim { - //! \brief Value object encapsulating a list of SimulatorInfo. + //! Value object encapsulating a list of SimulatorInfo objects. class CSimulatorInfoList : public BlackMisc::CSequence { public: + //! Default constructor CSimulatorInfoList(); - //! \brief Construct from a base class object. + //! Construct from a base class object. CSimulatorInfoList(const CSequence &other); //! \copydoc CValueObject::toQVariant - virtual QVariant toQVariant() const - { - return QVariant::fromValue(*this); - } + virtual QVariant toQVariant() const { return QVariant::fromValue(*this); } //! Is simulator supported bool supportsSimulator(const CSimulatorInfo &info); @@ -36,11 +34,10 @@ namespace BlackSim //! String list with meaningful representations QStringList toStringList(bool i18n = false) const; }; - } Q_DECLARE_METATYPE(BlackSim::CSimulatorInfoList) Q_DECLARE_METATYPE(BlackMisc::CCollection) Q_DECLARE_METATYPE(BlackMisc::CSequence) -#endif // BLACKSIM_SIMULATORINFOLIST_H +#endif // guard