diff options
author | Timothy Pearson <[email protected]> | 2013-02-06 19:42:10 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-06 19:42:10 -0600 |
commit | 3f4fd1573a16f0b95b74f97ab2ab6e2cf6a7c2c1 (patch) | |
tree | f4eec7481c59f143526e03de520f64f07d915c72 /kalyptus/kalyptusCxxToKimono.pm | |
parent | b930a3d298e4d18fc527946fad931a13c7c42904 (diff) | |
download | libtqt-perl-3f4fd1573a16f0b95b74f97ab2ab6e2cf6a7c2c1.tar.gz libtqt-perl-3f4fd1573a16f0b95b74f97ab2ab6e2cf6a7c2c1.zip |
Rename KCmd to avoid conflicts with KDE4
Diffstat (limited to 'kalyptus/kalyptusCxxToKimono.pm')
-rw-r--r-- | kalyptus/kalyptusCxxToKimono.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kalyptus/kalyptusCxxToKimono.pm b/kalyptus/kalyptusCxxToKimono.pm index d3e63c7..1e6bdc4 100644 --- a/kalyptus/kalyptusCxxToKimono.pm +++ b/kalyptus/kalyptusCxxToKimono.pm @@ -545,7 +545,7 @@ sub cplusplusToCSharp return "out double"; } elsif ( kalyptusDataDict::ctypemap($cplusplusType) =~ /^\s*(unsigned )?short\s*\*/ ) { return "out short"; - } elsif ( $cplusplusType =~ /KCmdLineOptions/ ) { + } elsif ( $cplusplusType =~ /TDECmdLineOptions/ ) { return "string[][]"; } elsif ( $cplusplusType =~ /char\s*\*\*/ || $cplusplusType =~ /TQStringList/|| $cplusplusType =~ /TQStrList/) { return "string[]"; @@ -3498,8 +3498,8 @@ sub printCSharpdocComment($$$$) $line =~ s/(const )?TQTime([^r])/DateTime$1/g; $line =~ s/TQString::null/null/g; $line =~ s/(const )?QC?String(\s*&)?/string/g; - $line =~ s/(const )?KCmdLineOptions\s*(\w+)\[\]/string[][] $2/; - $line =~ s/KCmdLineLastOption//g; + $line =~ s/(const )?TDECmdLineOptions\s*(\w+)\[\]/string[][] $2/; + $line =~ s/TDECmdLineLastOption//g; $line =~ s/virtual //g; $line =~ s/~\w+\(\)((\s*{\s*})|;)//g; $line =~ s/0L/null/g; @@ -3601,7 +3601,7 @@ sub printCSharpdocComment($$$$) $returntext =~ s/TQStringList/ArrayList/g; $returntext =~ s/([Aa]) ArrayList/$1n ArrayList/g; $returntext =~ s/TQString/string/g; - $returntext =~ s/KCmdLineOptions/string[][]/; + $returntext =~ s/TDECmdLineOptions/string[][]/; $returntext =~ s!\\note!<b>Note:<\b>!g; $returntext =~ s!\\(code|verbatim)!<pre>!g; $returntext =~ s!\\(endcode|endverbatim)!</pre>!g; |