Fix a warning on string comparison
This commit is contained in:
parent
2b551ef00b
commit
3a74436a2e
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ try_again:
|
||||||
try {
|
try {
|
||||||
delete m_client;
|
delete m_client;
|
||||||
m_client = new Xmms::Client (m_name);
|
m_client = new Xmms::Client (m_name);
|
||||||
if (!ipcpath || ipcpath == "")
|
if (!ipcpath || ipcpath == QLatin1String (""))
|
||||||
m_client->connect (NULL);
|
m_client->connect (NULL);
|
||||||
else
|
else
|
||||||
m_client->connect (ipcpath);
|
m_client->connect (ipcpath);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue