From ced4db430ca6e42d62bdc319548adbdf9602b68a Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Tue, 25 May 2010 09:01:06 +0200
Subject: [PATCH] fix function names in atom window

---
 src/atom_window.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/atom_window.py b/src/atom_window.py
index 177a7b14df..53f86ab37e 100644
--- a/src/atom_window.py
+++ b/src/atom_window.py
@@ -131,7 +131,7 @@ class AtomWindow:
     def on_next_button_clicked(self, widget):
         self.displayNextEntry()
 
-    def on_entry_title_button_press_event(self, widget, event):
+    def on_entry_title_eventbox_button_press_event(self, widget, event):
         #FIXME: make it using special gtk2.10 widget
         if event.button == 1:   # left click
             uri = self.entry.uri
@@ -139,7 +139,7 @@ class AtomWindow:
                 helpers.launch_browser_mailer('url', uri)
         return True
 
-    def on_feed_title_button_press_event(self, widget, event):
+    def on_feed_title_eventbox_button_press_event(self, widget, event):
         #FIXME: make it using special gtk2.10 widget
         if event.button == 1:   # left click
             uri = self.entry.feed_uri
-- 
GitLab