From 41baf0fc74fc885f36b9999cd6ba9e327b7c3884 Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Mon, 16 Jan 2017 16:38:07 +0100 Subject: [PATCH] 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 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/ui/keyboard.js b/js/ui/keyboard.js index 56f5d463a..2eaa51948 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;