From 5415938d0b781890a56b13223089db250f052f2e Mon Sep 17 00:00:00 2001 From: fgau Date: Sun, 28 Dec 2008 16:02:07 +0000 Subject: [PATCH] activate sms detail view git-svn-id: http://www.neo1973-germany.de/svn@223 46df4e5c-bc4e-4628-a0fc-830ba316316d --- epydial/epydial.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/epydial/epydial.py b/epydial/epydial.py index 74cf4c7..7c2210f 100755 --- a/epydial/epydial.py +++ b/epydial/epydial.py @@ -521,7 +521,7 @@ from calc_screen import * from pix_screen import * from contacts_screen import * from sms_screen import * -#from sms_detail import * +from sms_detail import * class Dialer(object): screens = None @@ -547,7 +547,7 @@ class Dialer(object): PyneoController.register_callback("show_pix_screen", self.on_pix_screen) PyneoController.register_callback("show_contacts_screen", self.on_contacts_screen) PyneoController.register_callback("show_sms_screen", self.on_sms_screen) -# PyneoController.register_callback("show_sms_screen_detail", self.on_sms_screen_detail) + PyneoController.register_callback("show_sms_screen_detail", self.on_sms_screen_detail) # Initialize the D-Bus interface to pyneo dbus_ml = e_dbus.DBusEcoreMainLoop()