From 5133814218de74d57c7febadf61b3ab05216dc25 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 22 Dec 2017 02:03:59 +0300 Subject: Remove default parameters from properties.h --- src/gui/widgets/tabs/debugwindowtabs.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/gui/widgets') diff --git a/src/gui/widgets/tabs/debugwindowtabs.cpp b/src/gui/widgets/tabs/debugwindowtabs.cpp index 321c3bcad..6199fccca 100644 --- a/src/gui/widgets/tabs/debugwindowtabs.cpp +++ b/src/gui/widgets/tabs/debugwindowtabs.cpp @@ -199,16 +199,16 @@ void MapDebugTab::logic() // TRANSLATORS: debug window label mMusicFileLabel->setCaption(strprintf("%s %s", _("Music:"), - map->getProperty("music").c_str())); + map->getProperty("music", std::string()).c_str())); // TRANSLATORS: debug window label mMinimapLabel->setCaption(strprintf("%s %s", _("Minimap:"), - map->getProperty("minimap").c_str())); + map->getProperty("minimap", std::string()).c_str())); // TRANSLATORS: debug window label mMapLabel->setCaption(strprintf("%s %s", _("Map:"), - map->getProperty("_realfilename").c_str())); + map->getProperty("_realfilename", std::string()).c_str())); // TRANSLATORS: debug window label mMapNameLabel->setCaption(strprintf("%s %s", _("Map name:"), - map->getProperty("name").c_str())); + map->getProperty("name", std::string()).c_str())); if (mUpdateTime != cur_time) { -- cgit v1.2.3-60-g2f50