From 9715b31f9dc4b77ad566b00b6427832203d4bc42 Mon Sep 17 00:00:00 2001 From: Xisco Fauli Date: Sun, 14 Oct 2012 21:28:48 +0200 Subject: pyfax: get rid of import * Change-Id: Ifb1d5edc400fe9f8b91851057c243280151eb1a2 --- wizards/com/sun/star/wizards/ui/event/CommonListener.py | 1 - wizards/com/sun/star/wizards/ui/event/DataAware.py | 3 +-- wizards/com/sun/star/wizards/ui/event/RadioDataAware.py | 5 ++--- wizards/com/sun/star/wizards/ui/event/UnoDataAware.py | 7 ++++--- 4 files changed, 7 insertions(+), 9 deletions(-) (limited to 'wizards') diff --git a/wizards/com/sun/star/wizards/ui/event/CommonListener.py b/wizards/com/sun/star/wizards/ui/event/CommonListener.py index 2a6ef5b68fb9..f8f2a9b70ca2 100644 --- a/wizards/com/sun/star/wizards/ui/event/CommonListener.py +++ b/wizards/com/sun/star/wizards/ui/event/CommonListener.py @@ -31,7 +31,6 @@ # Danny Brewer Revised 2004-06-05-01 # import unohelper - from com.sun.star.awt import XActionListener class ActionListenerProcAdapter( unohelper.Base, XActionListener ): diff --git a/wizards/com/sun/star/wizards/ui/event/DataAware.py b/wizards/com/sun/star/wizards/ui/event/DataAware.py index 8a9f08d36e65..781dc884031d 100644 --- a/wizards/com/sun/star/wizards/ui/event/DataAware.py +++ b/wizards/com/sun/star/wizards/ui/event/DataAware.py @@ -17,8 +17,7 @@ # import traceback from abc import ABCMeta, abstractmethod -from .CommonListener import * -from ...common.PropertyNames import * +from ...common.PropertyNames import PropertyNames ''' @author rpiterman diff --git a/wizards/com/sun/star/wizards/ui/event/RadioDataAware.py b/wizards/com/sun/star/wizards/ui/event/RadioDataAware.py index fa30c4d8beb9..9a263c17b983 100644 --- a/wizards/com/sun/star/wizards/ui/event/RadioDataAware.py +++ b/wizards/com/sun/star/wizards/ui/event/RadioDataAware.py @@ -16,9 +16,8 @@ # the License at http://www.apache.org/licenses/LICENSE-2.0 . # import time -from .DataAware import * -from .DataAware import * -from .UnoDataAware import * +from .CommonListener import ItemListenerProcAdapter +from .DataAware import DataAware class RadioDataAware(DataAware): diff --git a/wizards/com/sun/star/wizards/ui/event/UnoDataAware.py b/wizards/com/sun/star/wizards/ui/event/UnoDataAware.py index 4cc5a3e4f25c..c753a9be256b 100644 --- a/wizards/com/sun/star/wizards/ui/event/UnoDataAware.py +++ b/wizards/com/sun/star/wizards/ui/event/UnoDataAware.py @@ -15,9 +15,10 @@ # except in compliance with the License. You may obtain a copy of # the License at http://www.apache.org/licenses/LICENSE-2.0 . # -from .DataAware import * -from .DataAware import * -from ...common.Helper import * +import uno +from .CommonListener import ItemListenerProcAdapter, TextListenerProcAdapter +from .DataAware import DataAware, PropertyNames +from ...common.Helper import Helper ''' @author rpiterman -- cgit