diff options
author | Slávek Banko <[email protected]> | 2014-01-18 16:58:42 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2014-01-18 16:59:38 +0100 |
commit | d424535c61d5809d63f57aedcb230afcefbeda76 (patch) | |
tree | 41de95c007fb739c013fa3c650e2def35712735a /src/tdedesigner.py | |
parent | 5559f44ec69d0117494b80a0eaa235bd7baa2561 (diff) | |
download | pytdeextensions-d424535c61d5809d63f57aedcb230afcefbeda76.tar.gz pytdeextensions-d424535c61d5809d63f57aedcb230afcefbeda76.zip |
Rename kdedesigner => tdedesigner
Diffstat (limited to 'src/tdedesigner.py')
-rw-r--r-- | src/tdedesigner.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/tdedesigner.py b/src/tdedesigner.py new file mode 100644 index 0000000..ca58728 --- /dev/null +++ b/src/tdedesigner.py @@ -0,0 +1,25 @@ +#!/usr/bin/python +############################################################################ +# tdedesigner - description # +# ------------------------------ # +# begin : Thu Apr 21 2005 # +# copyright : (C) 2005 by Simon Edwards # +# email : [email protected] # +# # +########################################################################### +# # +# 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 |