diff options
Diffstat (limited to 'src/kdedesigner.py')
| -rw-r--r-- | src/kdedesigner.py | 25 | 
1 files changed, 25 insertions, 0 deletions
| diff --git a/src/kdedesigner.py b/src/kdedesigner.py new file mode 100644 index 0000000..7a2b898 --- /dev/null +++ b/src/kdedesigner.py @@ -0,0 +1,25 @@ +#!/usr/bin/python +############################################################################ +# kdedesigner - 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 qtuicompiler + +python_import = __builtin__.__import__ +def load(*args): +    qtuicompiler.DynamicImport(args,True) +    return apply(python_import,args) +__builtin__.__import__ = load | 
