From e84e842c1e6e9d35b0f5c2e915a11c32da707d60 Mon Sep 17 00:00:00 2001 From: Siegfried-Angel Gevatter Pujals Date: Tue, 4 Aug 2009 02:36:53 +0200 Subject: [PATCH] Fix 'redeclaration of global' error in lookingGlass.js. --- js/ui/lookingGlass.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/ui/lookingGlass.js b/js/ui/lookingGlass.js index 337a51939..085076a2b 100644 --- a/js/ui/lookingGlass.js +++ b/js/ui/lookingGlass.js @@ -175,7 +175,7 @@ LookingGlass.prototype = { let global = Shell.Global.get(); this._idleHistorySaveId = 0; - let historyPath = Shell.Global.get().configdir + "/lookingglass-history.txt"; + let historyPath = global.configdir + "/lookingglass-history.txt"; this._historyFile = Gio.file_new_for_path(historyPath); this._savedText = null; this._historyNavIndex = -1; @@ -241,7 +241,6 @@ LookingGlass.prototype = { this._hierarchy.setTarget(target); eventHandler.destroy(); this.actor.show(); - let global = Shell.Global.get(); global.stage.set_key_focus(this._entry); return true; }));