diff options
Diffstat (limited to 'src/tqtdesigner.py')
| -rw-r--r-- | src/tqtdesigner.py | 26 | 
1 files changed, 26 insertions, 0 deletions
| diff --git a/src/tqtdesigner.py b/src/tqtdesigner.py new file mode 100644 index 0000000..c31edee --- /dev/null +++ b/src/tqtdesigner.py @@ -0,0 +1,26 @@ +#!/usr/bin/python +########################################################################### +# tqtdesigner - description                                                # +# ------------------------------                                          # +# begin     : Thu Apr 21 2005                                             # +# copyright : (C) 2005 by Simon Edwards                                   # +# email     : simon@simonzone.com                                         # +#                                                                         # +########################################################################### +#                                                                         # +#   This program is free software; you can redistribute it and/or modify  # +#   it under the terms of the GNU Library General Public License as       # +#   published by the Free Software Foundation; either version 2 of the    # +#   License, or (at your option) any later version.                       # +#                                                                         # +########################################################################### + +import __builtin__ +import tqtuicompiler + +python_import = __builtin__.__import__ +def load(*args): +    tqtuicompiler.DynamicImport(args,False) +    return apply(python_import,args) +     +__builtin__.__import__ = load | 
