[gnome-shell] keyboard: Drop dbus naming semantics from Set[Entry|Cursor]Location



commit 41baf0fc74fc885f36b9999cd6ba9e327b7c3884
Author: Carlos Garnacho <carlosg gnome org>
Date:   Mon Jan 16 16:38:07 2017 +0100

    keyboard: Drop dbus naming semantics from Set[Entry|Cursor]Location
    
    Those functions don't proxy dbus method calls anymore, so just drop the
    uppercase 'S'.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=777342

 js/ui/keyboard.js |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/js/ui/keyboard.js b/js/ui/keyboard.js
index 56f5d46..2eaa519 100644
--- a/js/ui/keyboard.js
+++ b/js/ui/keyboard.js
@@ -247,8 +247,8 @@ const Keyboard = new Lang.Class({
                 if (caretRect.width == 0 && caretRect.height == 0)
                     caretRect = focusRect;
 
-                this.SetEntryLocation(focusRect.x, focusRect.y, focusRect.width, focusRect.height);
-                this.SetCursorLocation(caretRect.x, caretRect.y, caretRect.width, caretRect.height);
+                this.setEntryLocation(focusRect.x, focusRect.y, focusRect.width, focusRect.height);
+                this.setCursorLocation(caretRect.x, caretRect.y, caretRect.width, caretRect.height);
             } catch (e) {
                 log('Error updating caret position for OSK: ' + e.message);
             }
@@ -716,14 +716,14 @@ const Keyboard = new Lang.Class({
         this._showIdleId = 0;
     },
 
-    SetCursorLocation: function(x, y, w, h) {
+    setCursorLocation: function(x, y, w, h) {
         if (!this._enableKeyboard)
             return;
 
 //        this._setLocation(x, y);
     },
 
-    SetEntryLocation: function(x, y, w, h) {
+    setEntryLocation: function(x, y, w, h) {
         if (!this._enableKeyboard)
             return;
 


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