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 /kjsembed/builtins/qfile_imp.cpp | |
parent | b9190991168c11cd8a602c3b4490300ac01776fb (diff) | |
download | tdebindings-a5ebcd697325e8e6ac9756cc96857d9298d2c114.tar.gz tdebindings-a5ebcd697325e8e6ac9756cc96857d9298d2c114.zip |
Update for recent TQ changes.
Diffstat (limited to 'kjsembed/builtins/qfile_imp.cpp')
-rw-r--r-- | kjsembed/builtins/qfile_imp.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kjsembed/builtins/qfile_imp.cpp b/kjsembed/builtins/qfile_imp.cpp index 7f3d2b5b..1c79bb35 100644 --- a/kjsembed/builtins/qfile_imp.cpp +++ b/kjsembed/builtins/qfile_imp.cpp @@ -415,15 +415,15 @@ KJS::Value TQFileImp::readBlock_17( KJS::ExecState *exec, KJS::Object &obj, cons char * arg0; // Dummy - // Unsupported parameter Q_ULONG + // Unsupported parameter TQ_ULONG return KJS::Value(); - Q_ULONG arg1; // Dummy + TQ_ULONG arg1; // Dummy instance->readBlock( arg0, arg1 ); - return KJS::Value(); // Returns 'Q_LONG' + return KJS::Value(); // Returns 'TQ_LONG' } @@ -432,15 +432,15 @@ KJS::Value TQFileImp::writeBlock_18( KJS::ExecState *exec, KJS::Object &obj, con const char *arg0 = (args.size() >= 1) ? args[0].toString(exec).ascii() : 0; - // Unsupported parameter Q_ULONG + // Unsupported parameter TQ_ULONG return KJS::Value(); - Q_ULONG arg1; // Dummy + TQ_ULONG arg1; // Dummy instance->writeBlock( arg0, arg1 ); - return KJS::Value(); // Returns 'Q_LONG' + return KJS::Value(); // Returns 'TQ_LONG' } @@ -451,7 +451,7 @@ KJS::Value TQFileImp::writeBlock_19( KJS::ExecState *exec, KJS::Object &obj, con instance->writeBlock( arg0 ); - return KJS::Value(); // Returns 'Q_LONG' + return KJS::Value(); // Returns 'TQ_LONG' } @@ -463,15 +463,15 @@ KJS::Value TQFileImp::readLine_20( KJS::ExecState *exec, KJS::Object &obj, const char * arg0; // Dummy - // Unsupported parameter Q_ULONG + // Unsupported parameter TQ_ULONG return KJS::Value(); - Q_ULONG arg1; // Dummy + TQ_ULONG arg1; // Dummy instance->readLine( arg0, arg1 ); - return KJS::Value(); // Returns 'Q_LONG' + return KJS::Value(); // Returns 'TQ_LONG' } @@ -480,15 +480,15 @@ KJS::Value TQFileImp::readLine_21( KJS::ExecState *exec, KJS::Object &obj, const TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null; - // Unsupported parameter Q_ULONG + // Unsupported parameter TQ_ULONG return KJS::Value(); - Q_ULONG arg1; // Dummy + TQ_ULONG arg1; // Dummy instance->readLine( arg0, arg1 ); - return KJS::Value(); // Returns 'Q_LONG' + return KJS::Value(); // Returns 'TQ_LONG' } |