summaryrefslogtreecommitdiffstats
path: root/kalyptus/kalyptusCxxToKimono.pm
diff options
context:
space:
mode:
Diffstat (limited to 'kalyptus/kalyptusCxxToKimono.pm')
-rw-r--r--kalyptus/kalyptusCxxToKimono.pm16
1 files changed, 8 insertions, 8 deletions
diff --git a/kalyptus/kalyptusCxxToKimono.pm b/kalyptus/kalyptusCxxToKimono.pm
index 74589f40..07a1ace7 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);