summaryrefslogtreecommitdiff
path: root/src/gui/windows/statuswindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-12-17 23:11:36 +0300
committerAndrei Karas <akaras@inbox.ru>2013-12-17 23:11:36 +0300
commit5704f4887327b5415300c066ec5296c9dd110070 (patch)
tree1ce0308d3886b43d9f9c82809a7b25ddf49eda2f /src/gui/windows/statuswindow.cpp
parent6f7e50348f6366e5bf7f3a20b2b65297c811f3ba (diff)
downloadplus-5704f4887327b5415300c066ec5296c9dd110070.tar.gz
plus-5704f4887327b5415300c066ec5296c9dd110070.tar.bz2
plus-5704f4887327b5415300c066ec5296c9dd110070.tar.xz
plus-5704f4887327b5415300c066ec5296c9dd110070.zip
add restrict into statuswindow.
Diffstat (limited to 'src/gui/windows/statuswindow.cpp')
-rw-r--r--src/gui/windows/statuswindow.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/gui/windows/statuswindow.cpp b/src/gui/windows/statuswindow.cpp
index e08483f5d..2cf1e9168 100644
--- a/src/gui/windows/statuswindow.cpp
+++ b/src/gui/windows/statuswindow.cpp
@@ -87,8 +87,9 @@ class AttrDisplay : public Container
protected:
AttrDisplay(const Widget2 *const widget,
- const int id, const std::string &name,
- const std::string &shortName);
+ const int id,
+ const std::string &restrict name,
+ const std::string &restrict shortName);
const int mId;
const std::string mName;
@@ -103,8 +104,8 @@ class DerDisplay final : public AttrDisplay
{
public:
DerDisplay(const Widget2 *const widget,
- const int id, const std::string &name,
- const std::string &shortName);
+ const int id, const std::string &restrict name,
+ const std::string &restrict shortName);
A_DELETE_COPY(DerDisplay)
@@ -116,8 +117,8 @@ class ChangeDisplay final : public AttrDisplay, gcn::ActionListener
{
public:
ChangeDisplay(const Widget2 *const widget,
- const int id, const std::string &name,
- const std::string &shortName);
+ const int id, const std::string &restrict name,
+ const std::string &restrict shortName);
A_DELETE_COPY(ChangeDisplay)
@@ -471,10 +472,9 @@ void StatusWindow::setPointsNeeded(const int id, const int needed)
}
}
-void StatusWindow::addAttribute(const int id, const std::string &name,
- const std::string &shortName,
- const bool modifiable,
- const std::string &description A_UNUSED)
+void StatusWindow::addAttribute(const int id, const std::string &restrict name,
+ const std::string &restrict shortName,
+ const bool modifiable)
{
AttrDisplay *disp;
@@ -768,8 +768,8 @@ void StatusWindow::action(const gcn::ActionEvent &event)
}
AttrDisplay::AttrDisplay(const Widget2 *const widget,
- const int id, const std::string &name,
- const std::string &shortName) :
+ const int id, const std::string &restrict name,
+ const std::string &restrict shortName) :
Container(widget),
mId(id),
mName(name),
@@ -802,8 +802,8 @@ std::string AttrDisplay::update()
}
DerDisplay::DerDisplay(const Widget2 *const widget,
- const int id, const std::string &name,
- const std::string &shortName) :
+ const int id, const std::string &restrict name,
+ const std::string &restrict shortName) :
AttrDisplay(widget, id, name, shortName)
{
ContainerPlacer place = mLayout->getPlacer(0, 0);
@@ -813,8 +813,8 @@ DerDisplay::DerDisplay(const Widget2 *const widget,
}
ChangeDisplay::ChangeDisplay(const Widget2 *const widget,
- const int id, const std::string &name,
- const std::string &shortName) :
+ const int id, const std::string &restrict name,
+ const std::string &restrict shortName) :
AttrDisplay(widget, id, name, shortName),
gcn::ActionListener(),
mNeeded(1),