pyfax: get rid of import *

Change-Id: Ifb1d5edc400fe9f8b91851057c243280151eb1a2
This commit is contained in:
Xisco Fauli
2012-10-14 21:28:48 +02:00
parent 6c78b874a8
commit 9715b31f9d
4 changed files with 7 additions and 9 deletions

View File

@@ -31,7 +31,6 @@
# Danny Brewer Revised 2004-06-05-01 # Danny Brewer Revised 2004-06-05-01
# #
import unohelper import unohelper
from com.sun.star.awt import XActionListener from com.sun.star.awt import XActionListener
class ActionListenerProcAdapter( unohelper.Base, XActionListener ): class ActionListenerProcAdapter( unohelper.Base, XActionListener ):

View File

@@ -17,8 +17,7 @@
# #
import traceback import traceback
from abc import ABCMeta, abstractmethod from abc import ABCMeta, abstractmethod
from .CommonListener import * from ...common.PropertyNames import PropertyNames
from ...common.PropertyNames import *
''' '''
@author rpiterman @author rpiterman

View File

@@ -16,9 +16,8 @@
# the License at http://www.apache.org/licenses/LICENSE-2.0 . # the License at http://www.apache.org/licenses/LICENSE-2.0 .
# #
import time import time
from .DataAware import * from .CommonListener import ItemListenerProcAdapter
from .DataAware import * from .DataAware import DataAware
from .UnoDataAware import *
class RadioDataAware(DataAware): class RadioDataAware(DataAware):

View File

@@ -15,9 +15,10 @@
# except in compliance with the License. You may obtain a copy of # except in compliance with the License. You may obtain a copy of
# the License at http://www.apache.org/licenses/LICENSE-2.0 . # the License at http://www.apache.org/licenses/LICENSE-2.0 .
# #
from .DataAware import * import uno
from .DataAware import * from .CommonListener import ItemListenerProcAdapter, TextListenerProcAdapter
from ...common.Helper import * from .DataAware import DataAware, PropertyNames
from ...common.Helper import Helper
''' '''
@author rpiterman @author rpiterman