binding/afbclient: use the correct binding names
[staging/windowmanager.git] / client-lib / AFBClient.cpp
index dc1c523..e0c4efa 100644 (file)
@@ -239,7 +239,7 @@ int AFBClient::Impl::requestSurface(const char *label) {
     int rc = -1;
     /* send the request */
     int rc2 =
-        this->api_call("request_surface", j, [&rc](bool ok, json_object *j) {
+        this->api_call("RequestSurface", j, [&rc](bool ok, json_object *j) {
             if (ok) {
                 int id =
                     json_object_get_int(json_object_object_get(j, "response"));
@@ -275,7 +275,7 @@ int AFBClient::Impl::requestSurface(const char *label) {
 int AFBClient::Impl::activateSurface(const char *label) {
     TRACE();
     json_object *j = drawing_name_json_argument(label);
-    return this->api_call("activate_surface", j, [](bool ok, json_object *j) {
+    return this->api_call("ActivateSurface", j, [](bool ok, json_object *j) {
         if (!ok) {
             fprintf(stderr, "API Call activate_surface() failed: %s\n",
                     j != nullptr ? json_object_to_json_string_ext(
@@ -288,7 +288,7 @@ int AFBClient::Impl::activateSurface(const char *label) {
 int AFBClient::Impl::deactivateSurface(const char *label) {
     TRACE();
     json_object *j = drawing_name_json_argument(label);
-    return this->api_call("deactivate_surface", j, [](bool ok, json_object *j) {
+    return this->api_call("DeactivateSurface", j, [](bool ok, json_object *j) {
         if (!ok) {
             fprintf(stderr, "API Call deactivate_surface() failed: %s\n",
                     j != nullptr ? json_object_to_json_string_ext(
@@ -301,7 +301,7 @@ int AFBClient::Impl::deactivateSurface(const char *label) {
 int AFBClient::Impl::endDraw(const char *label) {
     TRACE();
     json_object *j = drawing_name_json_argument(label);
-    return this->api_call("enddraw", j, [](bool ok, json_object *j) {
+    return this->api_call("EndDraw", j, [](bool ok, json_object *j) {
         if (!ok) {
             fprintf(stderr, "API Call endDraw() failed: %s\n",
                     j != nullptr ? json_object_to_json_string_ext(