diff options
Diffstat (limited to 'kalyptus/kalyptusCxxToSmoke.pm')
-rw-r--r-- | kalyptus/kalyptusCxxToSmoke.pm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kalyptus/kalyptusCxxToSmoke.pm b/kalyptus/kalyptusCxxToSmoke.pm index e992ec0..6067499 100644 --- a/kalyptus/kalyptusCxxToSmoke.pm +++ b/kalyptus/kalyptusCxxToSmoke.pm @@ -919,13 +919,13 @@ my $fhn =1; # static map { for my $incl (keys %{$_->[2]}){ $includes{$incl}++ } } @code; # Hack - some Qt/KDE headers need other headers included, but omit suitable #includes - if (defined $includes{"qregexp.h"} || defined $includes{"qcstring.h"}) { - print $fh "#include <qregexp.h>\n"; - delete $includes{"qregexp.h"}; + if (defined $includes{"ntqregexp.h"} || defined $includes{"ntqcstring.h"}) { + print $fh "#include <ntqregexp.h>\n"; + delete $includes{"ntqregexp.h"}; } - if (defined $includes{"qmime.h"}) { - print $fh "#include <qurl.h>\n"; - delete $includes{"qurl.h"}; + if (defined $includes{"ntqmime.h"}) { + print $fh "#include <ntqurl.h>\n"; + delete $includes{"ntqurl.h"}; } if (defined $includes{"kshortcut.h"}) { print $fh "#include <kshortcut.h>\n"; @@ -946,9 +946,9 @@ my $fhn =1; # static print $fh "#include <$incl>\n"; } if ( $main::qt4 - and ( defined $includes{"qtreewidget.h"} - or defined $includes{"qlistwidget.h"} - or defined $includes{"qtablewidget.h"} ) ) + and ( defined $includes{"ntqtreewidget.h"} + or defined $includes{"ntqlistwidget.h"} + or defined $includes{"ntqtablewidget.h"} ) ) { print $fh "#include \"qwidgetitemdata_p.h\"\n"; } |