summaryrefslogtreecommitdiff
path: root/src/gui/widgets/tabbedarea.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-12-18 13:26:57 +0300
committerAndrei Karas <akaras@inbox.ru>2013-12-18 13:26:57 +0300
commit860e9114723f279ee1f79ed04d308d7af5fbd887 (patch)
tree530038d64b5116767ffdad5940685ca9e24e56ff /src/gui/widgets/tabbedarea.cpp
parentff3f52136772eccf65cd031f7777e2b352946d5d (diff)
downloadplus-860e9114723f279ee1f79ed04d308d7af5fbd887.tar.gz
plus-860e9114723f279ee1f79ed04d308d7af5fbd887.tar.bz2
plus-860e9114723f279ee1f79ed04d308d7af5fbd887.tar.xz
plus-860e9114723f279ee1f79ed04d308d7af5fbd887.zip
fix compilation with some flags after adding restrict keywords.
Diffstat (limited to 'src/gui/widgets/tabbedarea.cpp')
-rw-r--r--src/gui/widgets/tabbedarea.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/tabbedarea.cpp b/src/gui/widgets/tabbedarea.cpp
index 10150654e..9526c58bd 100644
--- a/src/gui/widgets/tabbedarea.cpp
+++ b/src/gui/widgets/tabbedarea.cpp
@@ -177,8 +177,8 @@ gcn::Widget *TabbedArea::getCurrentWidget() const
return nullptr;
}
-void TabbedArea::addTab(Tab *restrict const tab,
- gcn::Widget *restrict const widget)
+void TabbedArea::addTab(Tab *const tab,
+ gcn::Widget *const widget)
{
if (!tab || !widget)
return;