aboutsummaryrefslogtreecommitdiffstats
path: root/src/wm_client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wm_client.cpp')
-rw-r--r--src/wm_client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wm_client.cpp b/src/wm_client.cpp
index 500c60e..baed828 100644
--- a/src/wm_client.cpp
+++ b/src/wm_client.cpp
@@ -167,7 +167,7 @@ void WMClient::appendRole(const string& role)
return true;
} */
-bool WMClient::addSurface(unsigned surface)
+WMError WMClient::addSurface(unsigned surface)
{
this->surface = surface;
ilmErrorTypes err = ilm_layerAddSurface(this->layer, surface);
@@ -176,7 +176,7 @@ bool WMClient::addSurface(unsigned surface)
{
err = ilm_commitChanges();
}
- return (err == ILM_SUCCESS) ? true : false;
+ return (err == ILM_SUCCESS) ? WMError::SUCCESS : WMError::FAIL;
}
bool WMClient::removeSurfaceIfExist(unsigned surface)