[gnome-shell] shellDBus: Remove stray backslashes in D-Bus interface



commit feb3c6b618a8e2b2f5ea8a6b54c03f50fcee6034
Author: Tom Levy <tomlevy93 gmail com>
Date:   Wed Dec 9 12:34:18 2020 +0000

    shellDBus: Remove stray backslashes in D-Bus interface
    
    Those are left-over from when the interfaces were defined as inline
    strings.
    
    Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1526>

 data/dbus-interfaces/org.gnome.Shell.Extensions.xml | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/data/dbus-interfaces/org.gnome.Shell.Extensions.xml 
b/data/dbus-interfaces/org.gnome.Shell.Extensions.xml
index ab80c10966..51448dce72 100644
--- a/data/dbus-interfaces/org.gnome.Shell.Extensions.xml
+++ b/data/dbus-interfaces/org.gnome.Shell.Extensions.xml
@@ -180,10 +180,10 @@
 
         Enable an extension.
     -->
-    <method name="EnableExtension"> \
-      <arg type="s" direction="in" name="uuid"/> \
-      <arg type="b" direction="out" name="success"/> \
-    </method> \
+    <method name="EnableExtension">
+      <arg type="s" direction="in" name="uuid"/>
+      <arg type="b" direction="out" name="success"/>
+    </method>
 
     <!--
         DisableExtension:
@@ -192,10 +192,10 @@
 
         Disable an extension.
     -->
-    <method name="DisableExtension"> \
-      <arg type="s" direction="in" name="uuid"/> \
-      <arg type="b" direction="out" name="success"/> \
-    </method> \
+    <method name="DisableExtension">
+      <arg type="s" direction="in" name="uuid"/>
+      <arg type="b" direction="out" name="success"/>
+    </method>
 
     <!--
         LaunchExtensionPrefs:


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]