diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:18:16 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:18:16 -0600 |
commit | ed57d8a57b09cf200223bd57ebfaf8073b49653a (patch) | |
tree | cb4d3a82d6281babed602f97054756dddce9f8b5 /kalyptus/kalyptusCxxToKimono.pm | |
parent | 04dbe5845eb1cf6bcd7e5085bdd43ba21baba745 (diff) | |
download | libtqt-perl-ed57d8a57b09cf200223bd57ebfaf8073b49653a.tar.gz libtqt-perl-ed57d8a57b09cf200223bd57ebfaf8073b49653a.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kalyptus/kalyptusCxxToKimono.pm')
-rw-r--r-- | kalyptus/kalyptusCxxToKimono.pm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kalyptus/kalyptusCxxToKimono.pm b/kalyptus/kalyptusCxxToKimono.pm index 99fb0b6..871bf54 100644 --- a/kalyptus/kalyptusCxxToKimono.pm +++ b/kalyptus/kalyptusCxxToKimono.pm @@ -100,7 +100,7 @@ BEGIN 'signed int' => 'int', 'unsigned' => 'uint', 'unsigned int' => 'uint', - 'KIO::filesize_t' => 'long', + 'TDEIO::filesize_t' => 'long', 'signed long' => 'long', 'unsigned long' => 'ulong', @@ -742,7 +742,7 @@ sub preParseClass $className eq 'KXMLGUIClient::StateChange' || $className eq 'KIconTheme' || $className eq 'KEditListBox::CustomEditor' || - $className eq 'KIO::KBookmarkMenuNSImporter' || + $className eq 'TDEIO::KBookmarkMenuNSImporter' || $className eq 'KPerDomainSettings' || $className eq 'TDEApplicationPropsPlugin' || $className eq 'KPrinter' || @@ -766,16 +766,16 @@ sub preParseClass $className eq 'KOCRDialogFactory' || $className eq 'KExtendedBookmarkOwner' || $className eq 'KSharedPixmap' || - $className eq 'KSocket' || + $className eq 'TDESocket' || $className eq 'KLibrary' || $className eq 'KScanDialogFactory' || $className eq 'KDictSpellingHighlighter' || $className eq 'KPropertiesDialog' || $className eq 'ProgressItem' || - $className eq 'KIO::ChmodInfo' || - $className eq 'KIO::MetaData' || + $className eq 'TDEIO::ChmodInfo' || + $className eq 'TDEIO::MetaData' || $className eq 'KFileMimeTypeInfo::ItemInfo' || - $className eq 'KIO::UDSAtom' || + $className eq 'TDEIO::UDSAtom' || $className eq 'khtml::DrawContentsEvent' || # the khtml:: classes build, but don't link $className eq 'khtml::MouseDoubleClickEvent' || $className eq 'khtml::MouseMoveEvent' || @@ -2075,7 +2075,7 @@ sub generateMethod($$$$$$$) } elsif ($csharpSignature eq "at()" and $csharpClassName eq 'KFilterDev') { $csharpReturnType = "long"; } elsif ($csharpSignature =~ /copyTo/ and $csharpClassName eq "KDesktopFile" ) { - $altReturnType = "KConfig"; + $altReturnType = "TDEConfig"; } @@ -3581,7 +3581,7 @@ sub printCSharpdocComment($$$$) if ( defined $docnode->{See} ) { foreach my $text ( @{$docnode->{See}} ) { next if ($text =~ /TQString|^\s*and\s*$|^\s*$|^[^\w]*$/); - $text =~ s/KIO:://g; + $text =~ s/TDEIO:://g; $text =~ s/KParts:://g; while ($text =~ /((::)|(->))(.)/) { my $temp = uc($4); |