By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1790
Collapse All | Expand All

(-)pytdeextensions/src/qtuicompiler.py.ORI (-1 / +1 lines)
Lines 17-23 Link Here
17
17
18
import os
18
import os
19
import sys
19
import sys
20
import pyqtconfig
20
from python_tqt import pyqtconfig
21
from distutils.spawn import *
21
from distutils.spawn import *
22
import traceback
22
import traceback
23
23
(-)pytdeextensions/src/kdedistutils.py.ORI2 (-1 / +9 lines)
Lines 39-44 Link Here
39
INSTALL_LIST = 'install_log.txt'
39
INSTALL_LIST = 'install_log.txt'
40
from distutils.sysconfig import get_python_lib
41
sys.path.insert(0, get_python_lib(1) + "/sip4_tqt") # Trinity-specific path
42
sys.path.insert(0, get_python_lib(1) + "/python_tqt") # Trinity-specific path
43
44
40
###########################################################################
45
###########################################################################
41
def setup(**arg_dict):
46
def setup(**arg_dict):
Lines 930-937 Link Here
930
    }
930
    }
931
931
932
    // Inject a helper function
932
    // Inject a helper function
933
    TQString bridge = TQString("import sip\n" 
933
    TQString bridge = TQString("from distutils.sysconfig import get_python_lib\n"
934
                            "sys.path.insert(0, get_python_lib(1) + \"/sip4_tqt\")\n"
935
                            "sys.path.insert(0, get_python_lib(1) + \"/python_tqt\")\n"
936
                            "import sip\n"
934
                            "import qt\n"
937
                            "import qt\n"
935
                            "def kcontrol_bridge_" FACTORY "(parent,name):\n"
938
                            "def kcontrol_bridge_" FACTORY "(parent,name):\n"
936
                             "    if parent!=0:\n"
939
                             "    if parent!=0:\n"
937
#if SIP_VERSION >= 0x040200
940
#if SIP_VERSION >= 0x040200

Return to bug 1790