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 597
Collapse All | Expand All

(-)tdebindings/configure.in.in (-1 / +1 lines)
Lines 302-305 Link Here
302
KDE_CHECK_KNS
302
KDE_CHECK_KNS
303
303
304
dnl remove when fixed
304
dnl remove when fixed
305
DO_NOT_COMPILE="$DO_NOT_COMPILE dcopjava qtsharp"
305
DO_NOT_COMPILE="$DO_NOT_COMPILE qtsharp"
(-)tdebindings/dcopc/configure.in.in (-4 lines)
Lines 1-7 Link Here
1
dnl if test "$GTK_CONFIG" = "no"; then 
2
    DO_NOT_COMPILE="$DO_NOT_COMPILE dcopc"
3
dnl fi
4
dnl 
5
dnl AC_CHECK_GETHOSTNAME
1
dnl AC_CHECK_GETHOSTNAME
6
2
7
AC_GTK_2
3
AC_GTK_2
(-)tdebindings/dcopperl/DCOP.xs (-5 / +5 lines)
Lines 26-36 Link Here
26
#undef vform
26
#undef vform
27
#endif
27
#endif
28
28
29
#include <qpoint.h>
29
#include <tqpoint.h>
30
#include <qrect.h>
30
#include <tqrect.h>
31
#include <qregexp.h>
31
#include <tqregexp.h>
32
#include <qsize.h>
32
#include <tqsize.h>
33
#include <qstringlist.h>
33
#include <tqstringlist.h>
34
34
35
#include <dcopclient.h>
35
#include <dcopclient.h>
36
#include <dcopref.h>
36
#include <dcopref.h>
(-)tdebindings/dcopperl/Makefile.PL (-12 / +12 lines)
Lines 4-33 Link Here
4
# the contents of the Makefile that is written.
4
# the contents of the Makefile that is written.
5
5
6
print "Trying to find some configuration information...\n";
6
print "Trying to find some configuration information...\n";
7
my $kde_dirs = $ENV{TDEDIRS} || '/usr/local/kde';
7
my $tde_dirs = $ENV{TDEDIRS} || '/opt/trinity';
8
my $qt_dir = $ENV{QTDIR} || '/usr/lib/qt';
8
my $qt_dir = $ENV{QTDIR} || '/opt/trinity/lib';
9
my $kde_inc = "$kde_dirs/include";
9
my $tde_inc = "$tde_dirs/include";
10
my $kde_lib = "$kde_dirs/lib";
10
my $tde_lib = "$tde_dirs/lib";
11
my $qt_inc = "$qt_dir/include";
11
my $qt_inc = "$qt_dir/include";
12
my $qt_lib = "$qt_dir/lib";
12
my $qt_lib = "$qt_dir/lib";
13
$kde_inc = undef unless -f "$kde_inc/dcopclient.h"; 
13
$tde_inc = undef unless -f "$tde_inc/dcopclient.h";
14
$kde_lib = undef unless -f "$kde_lib/libDCOP.$Config{dlext}";
14
$tde_lib = undef unless -f "$tde_lib/libDCOP.$Config{dlext}";
15
$qt_dir = undef unless -f "$qt_inc/qglobal.h";
15
$qt_dir = undef unless -f "$qt_inc/qglobal.h";
16
16
17
print "Path to Qt headers? [$qt_inc]: ";
17
print "Path to Qt headers? [$qt_inc]: ";
18
chomp $input, $qt_inc = $input if (($input = <>) =~ /\S/);
18
chomp $input, $qt_inc = $input if (($input = <>) =~ /\S/);
19
print "Path to Qt libraries? [$qt_lib]: ";
19
print "Path to Qt libraries? [$qt_lib]: ";
20
chomp $input, $qt_lib = $input if (($input = <>) =~ /\S/);
20
chomp $input, $qt_lib = $input if (($input = <>) =~ /\S/);
21
print "Path to KDE headers? [$kde_inc]: ";
21
print "Path to TDE headers? [$tde_inc]: ";
22
chomp $input, $kde_inc = $input if (($input = <>) =~ /\S/);
22
chomp $input, $tde_inc = $input if (($input = <>) =~ /\S/);
23
print "Path to KDE libraries? [$kde_lib]: ";
23
print "Path to TDE libraries? [$tde_lib]: ";
24
chomp $input, $kde_lib = $input if (($input = <>) =~ /\S/);
24
chomp $input, $tde_lib = $input if (($input = <>) =~ /\S/);
25
25
26
WriteMakefile(
26
WriteMakefile(
27
    NAME	=> 'DCOP',
27
    NAME	=> 'DCOP',
28
    VERSION_FROM => 'DCOP.pm',
28
    VERSION_FROM => 'DCOP.pm',
29
    INC		=> "-I$qt_inc -I$kde_inc",
29
    INC		=> "-I$qt_inc -I$tde_inc -I/usr/include/tqt",
30
    LIBS	=> "-L$qt_lib -ltqt-mt -L$kde_lib -ltdecore -lDCOP",
30
    LIBS	=> "-L$qt_lib -ltqt-mt -L$tde_lib -ltdecore -lDCOP",
31
    XS		=> {'DCOP.xs' => 'DCOP.cpp'},
31
    XS		=> {'DCOP.xs' => 'DCOP.cpp'},
32
    XSOPT	=> '-C++',
32
    XSOPT	=> '-C++',
33
    CCFLAGS	=> '-x c++',
33
    CCFLAGS	=> '-x c++',
(-)tdebindings/dcopperl/Makefile.PL.in (-5 / +5 lines)
Lines 4-19 Link Here
4
# the contents of the Makefile that is written.
4
# the contents of the Makefile that is written.
5
5
6
print "Trying to find some configuration information...\n";
6
print "Trying to find some configuration information...\n";
7
my $kde_inc = "@kde_includes@";
7
my $tde_inc = "@tde_includes@";
8
my $kde_lib = "@kde_libraries@";
8
my $tde_lib = "@tde_libraries@";
9
my $qt_inc = "@qt_includes@";
9
my $qt_inc = "@qt_includes@";
10
my $qt_lib = "@qt_libraries@";
10
my $qt_lib = "@qt_libraries@";
11
 
11
12
WriteMakefile(
12
WriteMakefile(
13
    NAME	=> 'DCOP',
13
    NAME	=> 'DCOP',
14
    VERSION_FROM => '@srcdir@/DCOP.pm',
14
    VERSION_FROM => '@srcdir@/DCOP.pm',
15
    INC		=> "-I$qt_inc -I$kde_inc",
15
    INC		=> "-I$qt_inc -I$tde_inc -I/usr/include/tqt",
16
    LIBS	=> "-L$qt_lib -ltqt-mt -L$kde_lib -ltdecore -lDCOP",
16
    LIBS	=> "-L$qt_lib -ltqt-mt -L$tde_lib -ltdecore -lDCOP",
17
    XS		=> {'DCOP.xs' => 'DCOP.cpp'},
17
    XS		=> {'DCOP.xs' => 'DCOP.cpp'},
18
    XSOPT	=> '-C++',
18
    XSOPT	=> '-C++',
19
    CCFLAGS	=> '-x c++',
19
    CCFLAGS	=> '-x c++',
(-)tdebindings/qtsharp/src/generator/Printer.cs (-1 / +1 lines)
Lines 226-232 Link Here
226
		{
226
		{
227
			if (check)
227
			if (check)
228
				return "\n\n\t\t\tif ((qparent = parent) != null)\n" +
228
				return "\n\n\t\t\tif ((qparent = parent) != null)\n" +
229
					   "\t\t\t\parent.AddChild (this);\n";
229
					   "\t\t\tparent.AddChild (this);\n";
230
			else
230
			else
231
				return "";
231
				return "";
232
		}
232
		}
(-)tdebindings/kalyptus/kalyptusDataDict.pm (-1 / +1 lines)
Lines 2250-2256 Link Here
2250
'TQWindowsStyle*' => 'qt_QWindowsStyle*',
2250
'TQWindowsStyle*' => 'qt_QWindowsStyle*',
2251
'TQWizard*' => 'qt_QWizard*',
2251
'TQWizard*' => 'qt_QWizard*',
2252
'TQWorkspace*' => 'qt_QWorkspace*',
2252
'TQWorkspace*' => 'qt_QWorkspace*',
2253
'TQXEmbed*'  =>  'qt_QXEmbed*' ,
2253
'QXEmbed*'  =>  'qt_QXEmbed*' ,
2254
'TQXmlAttributes&'  =>  'qt_QXmlAttributes*' ,
2254
'TQXmlAttributes&'  =>  'qt_QXmlAttributes*' ,
2255
'TQXmlAttributes*' => 'qt_QXmlAttributes*',
2255
'TQXmlAttributes*' => 'qt_QXmlAttributes*',
2256
'TQXmlContentHandler*'  =>  'qt_QXmlContentHandler*' ,
2256
'TQXmlContentHandler*'  =>  'qt_QXmlContentHandler*' ,
(-)tdebindings/korundum/rubylib/examples/uimodules/uimisc.rb (-1 / +1 lines)
Lines 259-265 Link Here
259
    parent.currentPageObj = PageNotImpl.new(parent)
259
    parent.currentPageObj = PageNotImpl.new(parent)
260
end
260
end
261
261
262
def UIMisc.miscTQXEmbed(parent)
262
def UIMisc.miscQXEmbed(parent)
263
    parent.currentPageObj = PageNotImpl.new(parent)
263
    parent.currentPageObj = PageNotImpl.new(parent)
264
end
264
end
265
265
(-)tdebindings/korundum/rubylib/examples/uisampler.rb (-1 / +1 lines)
Lines 112-118 Link Here
112
                 "KDE::SharedPixmap" => [],
112
                 "KDE::SharedPixmap" => [],
113
                 "KDE::SystemTray" => [],
113
                 "KDE::SystemTray" => [],
114
                 "KDE::ThemeBase" => ["KDE::ThemeCache", "KDE::ThemePixmap", "KDE::ThemeStyle"],
114
                 "KDE::ThemeBase" => ["KDE::ThemeCache", "KDE::ThemePixmap", "KDE::ThemeStyle"],
115
                 "TQXEmbed" => []}}
115
                 "QXEmbed" => []}}
116
116
117
BLANK_MSG = <<END_OF_STRING 
117
BLANK_MSG = <<END_OF_STRING 
118
<b>UISampler</b> - provides examples of <b>Korundum</b> widgets<p>
118
<b>UISampler</b> - provides examples of <b>Korundum</b> widgets<p>
(-)tdebindings/xparts/configure.in.in (-1 / +1 lines)
Line 1 Link Here
1
DO_NOT_COMPILE="$DO_NOT_COMPILE xparts"
1
# DO_NOT_COMPILE="$DO_NOT_COMPILE xparts"
(-)tdebindings/xparts/src/kde/xparthost_kpart.cpp (-1 / +1 lines)
Lines 21-27 Link Here
21
{
21
{
22
    m_stub = 0;
22
    m_stub = 0;
23
    be = 0;
23
    be = 0;
24
    embed = new TQXEmbed(parentWidget, widgetName);
24
    embed = new QXEmbed(parentWidget, widgetName);
25
    setWidget(embed);
25
    setWidget(embed);
26
}
26
}
27
27
(-)tdebindings/xparts/src/kde/xparthost_kpart.h (-2 / +2 lines)
Lines 7-13 Link Here
7
7
8
class XPart_stub;
8
class XPart_stub;
9
class KBrowserSignals;
9
class KBrowserSignals;
10
class TQXEmbed;
10
class QXEmbed;
11
11
12
12
13
/** 
13
/** 
Lines 68-74 Link Here
68
    DCOPRef m_part;
68
    DCOPRef m_part;
69
    XPart_stub *m_stub;
69
    XPart_stub *m_stub;
70
    KBrowserSignals *be;
70
    KBrowserSignals *be;
71
    TQXEmbed *embed;
71
    QXEmbed *embed;
72
};
72
};
73
73
74
#endif
74
#endif

Return to bug 597