diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2009-07-19 10:13:14 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2009-07-19 10:13:14 +0200 |
commit | 3e62ac1993dc8f3315115c12dfe12abec84b96c9 (patch) | |
tree | 77ff73959f3c918f8d5ad0935731577e5165d2f2 /src/gui/statuswindow.cpp | |
parent | ae6a194d4ccb354c6adf9fe4c084c64906d40907 (diff) | |
download | mana-3e62ac1993dc8f3315115c12dfe12abec84b96c9.tar.gz mana-3e62ac1993dc8f3315115c12dfe12abec84b96c9.tar.bz2 mana-3e62ac1993dc8f3315115c12dfe12abec84b96c9.tar.xz mana-3e62ac1993dc8f3315115c12dfe12abec84b96c9.zip |
Apparently, this function shouldn't return anything
Diffstat (limited to 'src/gui/statuswindow.cpp')
-rw-r--r-- | src/gui/statuswindow.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/gui/statuswindow.cpp b/src/gui/statuswindow.cpp index 18f1ceb3..4df474a7 100644 --- a/src/gui/statuswindow.cpp +++ b/src/gui/statuswindow.cpp @@ -199,14 +199,10 @@ void StatusWindow::update() update(); } -std::string StatusWindow::update(int id) +void StatusWindow::update(int id) { // TODO: only update what changed update(); - - // FIXME: Added the return value to be able to compile, haven't got a - // clue what it is supposed to return (Kess, July 2009) - return ""; } void StatusWindow::addAttribute(int id, const std::string &name, |