Remove member string initialization to empty string in constructor

QString always treats null strings and empty strings the same,
except in isNull, so there is no need for this.
This commit is contained in:
Roland Winklmeier
2014-01-15 21:24:15 +01:00
parent e36448f0a1
commit 4d6564af64

View File

@@ -28,7 +28,7 @@ namespace BlackMisc
* Default constructor.
*/
CVoiceRoom() :
m_hostname(""), m_channel(""), m_connected(false), m_audioPlaying(false) {}
m_connected(false), m_audioPlaying(false) {}
/*!
* Constructor.