diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-20 01:09:59 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-20 01:09:59 -0500 |
commit | a5ebcd697325e8e6ac9756cc96857d9298d2c114 (patch) | |
tree | 83ad2687d35b7c717b2ac5a0c69e61dac17cb0dd /korundum | |
parent | b9190991168c11cd8a602c3b4490300ac01776fb (diff) | |
download | tdebindings-a5ebcd697325e8e6ac9756cc96857d9298d2c114.tar.gz tdebindings-a5ebcd697325e8e6ac9756cc96857d9298d2c114.zip |
Update for recent TQ changes.
Diffstat (limited to 'korundum')
-rw-r--r-- | korundum/ChangeLog | 8 | ||||
-rw-r--r-- | korundum/rubylib/rbkconfig_compiler/rbkconfig_compiler.cpp | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/korundum/ChangeLog b/korundum/ChangeLog index dd2a98a6..701ec0a6 100644 --- a/korundum/ChangeLog +++ b/korundum/ChangeLog @@ -338,10 +338,10 @@ CCMAIL: kde-bindings@kde.org 2004-07-30 Richard Dale <Richard_Dale@tipitina.demon.co.uk> - * Removed the various Q_INT32 etc types from the Smoke stack <--> TQDataStream + * Removed the various TQ_INT32 etc types from the Smoke stack <--> TQDataStream marshalling. This was because the code generated by the dcopidl2cpp tool doesn't have them. So if a machine has native 64 bit ints, then that width - will be used rather than Q_INT32. + will be used rather than TQ_INT32. 2004-07-28 Richard Dale <Richard_Dale@tipitina.demon.co.uk> @@ -396,12 +396,12 @@ CCMAIL: kde-bindings@kde.org 2004-07-21 Richard Dale <Richard_Dale@tipitina.demon.co.uk> - * TQDataStream temporary variables added for the Q_INT32 etc types when + * TQDataStream temporary variables added for the TQ_INT32 etc types when writing to a Smoke stack from a TQDataStream. 2004-07-21 Richard Dale <Richard_Dale@tipitina.demon.co.uk> - * Added casts to the various macros like 'Q_INT32' when writing a Smoke + * Added casts to the various macros like 'TQ_INT32' when writing a Smoke stack to a TQDataStream 2004-07-21 Richard Dale <Richard_Dale@tipitina.demon.co.uk> diff --git a/korundum/rubylib/rbkconfig_compiler/rbkconfig_compiler.cpp b/korundum/rubylib/rbkconfig_compiler/rbkconfig_compiler.cpp index 63ccd8b9..a2f503ae 100644 --- a/korundum/rubylib/rbkconfig_compiler/rbkconfig_compiler.cpp +++ b/korundum/rubylib/rbkconfig_compiler/rbkconfig_compiler.cpp @@ -593,8 +593,8 @@ TQString param( const TQString &type ) else if ( type == "Bool" ) return "bool"; else if ( type == "Double" ) return "double"; else if ( type == "DateTime" ) return "const TQDateTime &"; - else if ( type == "Int64" ) return "Q_INT64"; - else if ( type == "UInt64" ) return "Q_UINT64"; + else if ( type == "Int64" ) return "TQ_INT64"; + else if ( type == "UInt64" ) return "TQ_UINT64"; else if ( type == "IntList" ) return "const TQValueList<int> &"; else if ( type == "Enum" ) return "int"; else if ( type == "Path" ) return "const TQString &"; |