summaryrefslogtreecommitdiff
path: root/src/gui/windows
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-10-28 20:47:42 +0300
committerAndrei Karas <akaras@inbox.ru>2016-10-28 20:47:42 +0300
commite7482b08370a87941f8d100d1f833f2128cb901c (patch)
tree93c23722bc7e3b56a9e5eaef1d12e770e0db9902 /src/gui/windows
parent6f496c4919a62edbb73e9adbc3ddd84484afc756 (diff)
downloadplus-e7482b08370a87941f8d100d1f833f2128cb901c.tar.gz
plus-e7482b08370a87941f8d100d1f833f2128cb901c.tar.bz2
plus-e7482b08370a87941f8d100d1f833f2128cb901c.tar.xz
plus-e7482b08370a87941f8d100d1f833f2128cb901c.zip
Add missing consts references.
Diffstat (limited to 'src/gui/windows')
-rw-r--r--src/gui/windows/questswindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/windows/questswindow.cpp b/src/gui/windows/questswindow.cpp
index c35bb80b1..c8ce4246e 100644
--- a/src/gui/windows/questswindow.cpp
+++ b/src/gui/windows/questswindow.cpp
@@ -478,7 +478,7 @@ void QuestsWindow::showQuest(const QuestItem *const quest)
const std::string var1 = toString(var.var1);
const std::string var2 = toString(var.var2);
const std::string var3 = toString(var.var3);
- const std::string timeStr = timeDiffToString(var.time1).c_str();
+ const std::string timeStr = timeDiffToString(var.time1);
mText->clearRows();
FOR_EACH (std::vector<QuestItemText>::const_iterator, it, texts)
{