From c437430f28e30c484ef592de1b23ad8fc70fa7a8 Mon Sep 17 00:00:00 2001 From: Daniel Martin Yerga Date: Fri, 18 Sep 2009 20:50:31 +0200 Subject: [PATCH] some bugfixes --- changelog | 5 +++++ setup.py | 2 +- stockthis.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/changelog b/changelog index 887f84f..849b29f 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,8 @@ +2009-09-18 Daniel Martin Yerga + + * hildon_touch_selector is gone in python-hildon. + * maemo.org logo is installed correctly. + 2009-08-27 Daniel Martin Yerga * Option to add manually an instrument to your portfolio. diff --git a/setup.py b/setup.py index 1293af3..83c4ec6 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ from distutils.core import setup # files to install inst_desktop = ['stockthis.desktop'] inst_py = ['stockthis.py', 'marketdata.py', 'settings.py'] -pixmaps = ['pixmaps/stockthis.png'] +pixmaps = ['pixmaps/stockthis.png', 'pixmaps/maemoorg.png'] inst_dbus = ['stockthis.service'] inst_icon = ['stockthis.png'] inst_icon_sca = ['pixmaps/stockthis.png'] diff --git a/stockthis.py b/stockthis.py index de12beb..9de17dc 100644 --- a/stockthis.py +++ b/stockthis.py @@ -364,7 +364,7 @@ class StocksPy: if entry: selector = hildon.TouchSelectorEntry(text=True) else: - selector = hildon.hildon_touch_selector_new_text() + selector = hildon.TouchSelector(text=True) for i in range(len(data)): selector.append_text(data[i]) -- 1.7.9.5