From 11336ca68158db66405964fb0b71845b2aa56786 Mon Sep 17 00:00:00 2001 From: Rosemary Witchaven <32779090+in1tiate@users.noreply.github.com> Date: Mon, 13 Sep 2021 11:32:42 -0500 Subject: [PATCH] string literal over QString::number --- core/src/area_data.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/area_data.cpp b/core/src/area_data.cpp index f11d05d..4f2e763 100644 --- a/core/src/area_data.cpp +++ b/core/src/area_data.cpp @@ -559,7 +559,7 @@ void AreaData::switchJukeboxSong() QString l_song_name; if(m_jukebox_queue.size() == 1) { l_song_name = m_jukebox_queue[0]; - emit playJukeboxSong(AOPacket("MC",{l_song_name,QString::number(-1)}), m_index); + emit playJukeboxSong(AOPacket("MC",{l_song_name,"-1"}), m_index); m_jukebox_timer->start(ConfigManager::songInformation(l_song_name) * 1000); } else {