summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/ui
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2012-09-24 22:15:09 +0200
committerXisco Fauli <anistenis@gmail.com>2012-09-24 22:32:33 +0200
commit9351d0e4181924c3f72be24081fc7af027aa41f7 (patch)
tree39bb91fd312ad18c795a3734095d98f82ae744a9 /wizards/com/sun/star/wizards/ui
parent342954349875ec4c22f6d2dcb9979f4f16eef92e (diff)
pywizards: get rid of import * (3)
Change-Id: Ibf7c6fc7863b6eccb28e5396587f2ec00ffcbe43
Diffstat (limited to 'wizards/com/sun/star/wizards/ui')
-rw-r--r--wizards/com/sun/star/wizards/ui/ControlScroller.py1
-rw-r--r--wizards/com/sun/star/wizards/ui/ImageList.py2
-rw-r--r--wizards/com/sun/star/wizards/ui/PathSelection.py4
3 files changed, 3 insertions, 4 deletions
diff --git a/wizards/com/sun/star/wizards/ui/ControlScroller.py b/wizards/com/sun/star/wizards/ui/ControlScroller.py
index e89ac61bfbcb..c38a4ba86fbc 100644
--- a/wizards/com/sun/star/wizards/ui/ControlScroller.py
+++ b/wizards/com/sun/star/wizards/ui/ControlScroller.py
@@ -15,7 +15,6 @@
# except in compliance with the License. You may obtain a copy of
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
#
-import uno
import traceback
from wizards.common.Desktop import Desktop
from wizards.common.PropertyNames import PropertyNames
diff --git a/wizards/com/sun/star/wizards/ui/ImageList.py b/wizards/com/sun/star/wizards/ui/ImageList.py
index 1a6b8ddbc550..b743afae4a25 100644
--- a/wizards/com/sun/star/wizards/ui/ImageList.py
+++ b/wizards/com/sun/star/wizards/ui/ImageList.py
@@ -17,7 +17,7 @@
#
from threading import RLock
from .PeerConfig import PeerConfig
-from ..common.PropertyNames import *
+from ..common.PropertyNames import PropertyNames
from ..common.HelpIds import HelpIds
from ..common.Helper import Helper
diff --git a/wizards/com/sun/star/wizards/ui/PathSelection.py b/wizards/com/sun/star/wizards/ui/PathSelection.py
index 37040a6a8a30..6d5762d7910d 100644
--- a/wizards/com/sun/star/wizards/ui/PathSelection.py
+++ b/wizards/com/sun/star/wizards/ui/PathSelection.py
@@ -16,8 +16,8 @@
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
#
import traceback
-from ..common.PropertyNames import *
-from ..common.FileAccess import *
+from ..common.PropertyNames import PropertyNames
+from ..common.FileAccess import FileAccess
from ..common.SystemDialog import SystemDialog
class PathSelection(object):