blob: 7a2b898bb01ea60c38ef6b071a0870182f51244e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
|