summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2012-10-14 21:28:48 +0200
committerXisco Fauli <anistenis@gmail.com>2012-10-14 21:46:20 +0200
commit9715b31f9dc4b77ad566b00b6427832203d4bc42 (patch)
tree093558c798c91db94e5a75c2f3b11ccc728f4be7 /wizards/com/sun/star/wizards
parent6c78b874a8d439e20c96593a399b85185ac0785e (diff)
pyfax: get rid of import *
Change-Id: Ifb1d5edc400fe9f8b91851057c243280151eb1a2
Diffstat (limited to 'wizards/com/sun/star/wizards')
-rw-r--r--wizards/com/sun/star/wizards/ui/event/CommonListener.py1
-rw-r--r--wizards/com/sun/star/wizards/ui/event/DataAware.py3
-rw-r--r--wizards/com/sun/star/wizards/ui/event/RadioDataAware.py5
-rw-r--r--wizards/com/sun/star/wizards/ui/event/UnoDataAware.py7
4 files changed, 7 insertions, 9 deletions
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