Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/progresslistener.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-09-03 14:27:44 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-09-03 14:27:44 (GMT)
commite8549d91315dc9dbdc84c750d39bcc4a477c893e (patch)
treee1d35ba6c6474a654f4bd9e62a054d4499739d41 /progresslistener.py
parent08d650a1b46df5002cc8eb71d0cb3a6d47a87960 (diff)
Unescape the address bar URI
Diffstat (limited to 'progresslistener.py')
-rw-r--r--progresslistener.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/progresslistener.py b/progresslistener.py
index 087a891..86a6452 100644
--- a/progresslistener.py
+++ b/progresslistener.py
@@ -24,7 +24,7 @@ class ProgressListener(gobject.GObject):
__gsignals__ = {
'location-changed': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE,
- ([str])),
+ ([object])),
'loading-start': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE,
([])),
'loading-stop': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE,
@@ -51,7 +51,7 @@ class ProgressListener(gobject.GObject):
self.completed_requests = 0
def onLocationChange(self, webProgress, request, location):
- self.emit('location-changed', location.spec)
+ self.emit('location-changed', location)
def onProgressChange(self, webProgress, request, curSelfProgress,
maxSelfProgress, curTotalProgress, maxTotalProgress):