Rename additional global TQt functions

pull/2/head
Timothy Pearson 13 years ago
parent b0b53cc84f
commit a830bf10b7

18
configure vendored

@ -1093,15 +1093,15 @@ static const char QT_INSTALL_TRANSLATIONS[267] = "qt_trnpath=$QT_INSTALL_TRANSLA
static const char QT_INSTALL_SYSCONF [267] = "qt_cnfpath=$QT_INSTALL_SYSCONF";
/* strlen( "qt_xxxpath=" ) == 11 */
const char *qInstallPath() { return QT_INSTALL_PREFIX + 11; }
const char *qInstallPathDocs() { return QT_INSTALL_DOCS + 11; }
const char *qInstallPathHeaders() { return QT_INSTALL_HEADERS + 11; }
const char *qInstallPathLibs() { return QT_INSTALL_LIBS + 11; }
const char *qInstallPathBins() { return QT_INSTALL_BINS + 11; }
const char *qInstallPathPlugins() { return QT_INSTALL_PLUGINS + 11; }
const char *qInstallPathData() { return QT_INSTALL_DATA + 11; }
const char *qInstallPathTranslations() { return QT_INSTALL_TRANSLATIONS + 11; }
const char *qInstallPathSysconf() { return QT_INSTALL_SYSCONF + 11; }
const char *tqInstallPath() { return QT_INSTALL_PREFIX + 11; }
const char *tqInstallPathDocs() { return QT_INSTALL_DOCS + 11; }
const char *tqInstallPathHeaders() { return QT_INSTALL_HEADERS + 11; }
const char *tqInstallPathLibs() { return QT_INSTALL_LIBS + 11; }
const char *tqInstallPathBins() { return QT_INSTALL_BINS + 11; }
const char *tqInstallPathPlugins() { return QT_INSTALL_PLUGINS + 11; }
const char *tqInstallPathData() { return QT_INSTALL_DATA + 11; }
const char *tqInstallPathTranslations() { return QT_INSTALL_TRANSLATIONS + 11; }
const char *tqInstallPathSysconf() { return QT_INSTALL_SYSCONF + 11; }
EOF
# avoid unecessary rebuilds by copying only if qconfig.cpp has changed

@ -72,10 +72,10 @@ that can help with debugging.
Qt includes three global functions for writing out warning and debug
text.
\list
\i \link ::qDebug() qDebug()\endlink for writing debug output for testing etc.
\i \link ::qWarning() qWarning()\endlink for writing warning output when program
\i \link ::tqDebug() tqDebug()\endlink for writing debug output for testing etc.
\i \link ::tqWarning() tqWarning()\endlink for writing warning output when program
errors occur.
\i \link ::qFatal() qFatal()\endlink for writing fatal error messages
\i \link ::tqFatal() tqFatal()\endlink for writing fatal error messages
and exiting.
\endlist
@ -166,12 +166,12 @@ Example:
{
#if defined(QT_CHECK_NULL)
if ( p == 0 )
qWarning( "f: Null pointer not allowed" );
tqWarning( "f: Null pointer not allowed" );
#endif
#if defined(QT_CHECK_RANGE)
if ( i < 0 )
qWarning( "f: The index cannot be negative" );
tqWarning( "f: The index cannot be negative" );
#endif
}
\endcode

@ -867,7 +867,7 @@ void <a name="f653"></a>Main::addMesh()
#ifndef QT_NO_PROGRESSDIALOG
progress.<a href="qprogressdialog.html#setProgress">setProgress</a>( rows );
#endif
// qDebug( "%d nodes, %d edges", nodecount, EdgeItem::count() );
// tqDebug( "%d nodes, %d edges", nodecount, EdgeItem::count() );
}
void <a name="f654"></a>Main::addRectangle()

@ -77,7 +77,7 @@ bool createConnections()
// create the default database connection
QSqlDatabase *defaultDB = QSqlDatabase::addDatabase( "QPSQL7" );
if ( ! defaultDB ) {
qWarning( "Failed to connect to driver" );
tqWarning( "Failed to connect to driver" );
return FALSE;
}
defaultDB-&gt;setDatabaseName( "book" );
@ -85,9 +85,9 @@ bool createConnections()
defaultDB-&gt;setPassword( "bookpw" );
defaultDB-&gt;setHostName( "bookhost" );
if ( ! defaultDB-&gt;open() ) {
qWarning( "Failed to open books database: " +
tqWarning( "Failed to open books database: " +
defaultDB-&gt;lastError().driverText() );
qWarning( defaultDB-&gt;lastError().databaseText() );
tqWarning( defaultDB-&gt;lastError().databaseText() );
return FALSE;
}

@ -2077,7 +2077,7 @@ packImage:
<a href="qftp.html#put">QFtp</a> <a href="qurloperator.html#put">QUrlOperator</a><li>putPoints:
<a href="qpointarray.html#putPoints">QPointArray</a><li>putch:
<a href="qfile.html#putch">QFile</a> <a href="qiodevice.html#putch">QIODevice</a> <a href="qsocket.html#putch">QSocket</a><li><a name="q"></a>
qAddPostRoutine:
tqAddPostRoutine:
<a href="qapplication.html#qAddPostRoutine">QApplication</a><li>qAlpha:
<a href="qcolor.html#qAlpha">QColor</a><li>qBlue:
<a href="qcolor.html#qBlue">QColor</a><li>qChecksum:

@ -390,8 +390,8 @@ new code.
<li> <tt>#define strcpy qstrcpy</tt>
<li> <tt>#define strcmp qstrcmp</tt>
<li> <tt>#define strncmp qstrncmp</tt>
<li> <tt>#define stricmp qstricmp</tt>
<li> <tt>#define strnicmp qstrnicmp</tt>
<li> <tt>#define stricmp tqstricmp</tt>
<li> <tt>#define strnicmp tqstrnicmp</tt>
</ul>
<p> See the changes-3.0.0 document for an explanation of why this had to be done.
You might have been relying on the non-portable and unpredictable behavior

@ -1900,7 +1900,7 @@ similar to the C printf() function.
is sent to the debugger.
<p> <b>Warning:</b> The internal buffer is limited to 8196 bytes (including
the '&#92;0'-terminator).
<p> <b>Warning:</b> Passing (const char *)0 as argument to qDebug might lead
<p> <b>Warning:</b> Passing (const char *)0 as argument to tqDebug might lead
to crashes on certain platforms due to the platforms printf implementation.
<p> <p>See also <a href="#qWarning">qWarning</a>(), <a href="#qFatal">qFatal</a>(), <a href="#qInstallMsgHandler">qInstallMsgHandler</a>(), and <a href="debug.html">Debugging</a>.
@ -1926,7 +1926,7 @@ similar to the C printf() function.
is sent to the debugger.
<p> <b>Warning:</b> The internal buffer is limited to 8196 bytes (including
the '&#92;0'-terminator).
<p> <b>Warning:</b> Passing (const char *)0 as argument to qFatal might lead
<p> <b>Warning:</b> Passing (const char *)0 as argument to tqFatal might lead
to crashes on certain platforms due to the platforms printf implementation.
<p> <p>See also <a href="#qDebug">qDebug</a>(), <a href="#qWarning">qWarning</a>(), <a href="#qInstallMsgHandler">qInstallMsgHandler</a>(), and <a href="debug.html">Debugging</a>.
@ -2029,7 +2029,7 @@ similar to the C printf() function.
is sent to the debugger.
<p> <b>Warning:</b> The internal buffer is limited to 8196 bytes (including
the '&#92;0'-terminator).
<p> <b>Warning:</b> Passing (const char *)0 as argument to qWarning might lead
<p> <b>Warning:</b> Passing (const char *)0 as argument to tqWarning might lead
to crashes on certain platforms due to the platforms printf implementation.
<p> <p>See also <a href="#qDebug">qDebug</a>(), <a href="#qFatal">qFatal</a>(), <a href="#qInstallMsgHandler">qInstallMsgHandler</a>(), and <a href="debug.html">Debugging</a>.

@ -89,9 +89,9 @@ body { background: #ffffff; color: black; }
Safe and portable C string functions; extensions to standard string.h
*****************************************************************************/
Q_EXPORT void *qmemmove( void *dst, const void *src, uint len );
Q_EXPORT void *tqmemmove( void *dst, const void *src, uint len );
Q_EXPORT char *qstrdup( const char * );
Q_EXPORT char *tqstrdup( const char * );
Q_EXPORT inline uint qstrlen( const char *str )
{ return str ? (uint)strlen(str) : 0u; }
@ -99,7 +99,7 @@ Q_EXPORT inline uint qstrlen( const char *str )
Q_EXPORT inline char *qstrcpy( char *dst, const char *src )
{ return src ? strcpy(dst, src) : 0; }
Q_EXPORT char *qstrncpy( char *dst, const char *src, uint len );
Q_EXPORT char *tqstrncpy( char *dst, const char *src, uint len );
Q_EXPORT inline int qstrcmp( const char *str1, const char *str2 )
{
@ -113,9 +113,9 @@ Q_EXPORT inline int qstrncmp( const char *str1, const char *str2, uint len )
: ( str1 ? 1 : ( str2 ? -1 : 0 ) );
}
Q_EXPORT int qstricmp( const char *, const char * );
Q_EXPORT int tqstricmp( const char *, const char * );
Q_EXPORT int qstrnicmp( const char *, const char *, uint len );
Q_EXPORT int tqstrnicmp( const char *, const char *, uint len );
#ifndef QT_CLEAN_NAMESPACE
Q_EXPORT inline uint cstrlen( const char *str )
@ -132,9 +132,9 @@ Q_EXPORT inline int cstrncmp( const char *str1, const char *str2, uint len )
#endif
// qChecksum: Internet checksum
// tqChecksum: Internet checksum
Q_EXPORT Q_UINT16 qChecksum( const char *s, uint len );
Q_EXPORT Q_UINT16 tqChecksum( const char *s, uint len );
/*****************************************************************************
QByteArray class
@ -156,10 +156,10 @@ typedef QMemArray&lt;char&gt; QByteArray;
#endif
#ifndef QT_NO_COMPRESS
Q_EXPORT QByteArray qCompress( const uchar* data, int nbytes );
Q_EXPORT QByteArray tqCompress( const uchar* data, int nbytes );
Q_EXPORT QByteArray qUncompress( const uchar* data, int nbytes );
Q_EXPORT inline QByteArray qCompress( const QByteArray&amp; data)
{ return qCompress( (const uchar*)data.data(), data.size() ); }
Q_EXPORT inline QByteArray tqCompress( const QByteArray&amp; data)
{ return tqCompress( (const uchar*)data.data(), data.size() ); }
Q_EXPORT inline QByteArray qUncompress( const QByteArray&amp; data )
{ return qUncompress( (const uchar*)data.data(), data.size() ); }
#endif

@ -92,7 +92,7 @@ body { background: #ffffff; color: black; }
#define QGL_VERSION 450
#define QGL_VERSION_STR "4.5"
QM_EXPORT_OPENGL inline const char *qGLVersion() {
qObsolete( 0, "qGLVersion", "qVersion" );
tqObsolete( 0, "qGLVersion", "qVersion" );
return QGL_VERSION_STR;
}
#endif

@ -942,9 +942,9 @@ extern Q_EXPORT bool qt_winunicode;
// System information
//
Q_EXPORT const char *qVersion();
Q_EXPORT bool qSysInfo( int *wordSize, bool *bigEndian );
Q_EXPORT bool qSharedBuild();
Q_EXPORT const char *tqVersion();
Q_EXPORT bool tqSysInfo( int *wordSize, bool *bigEndian );
Q_EXPORT bool tqSharedBuild();
#if defined(Q_OS_MAC)
int qMacVersion();
#elif defined(Q_WS_WIN)
@ -1003,25 +1003,25 @@ Q_EXPORT int qWinVersion();
#endif
Q_EXPORT void qDebug( const char *, ... ) // print debug message
Q_EXPORT void tqDebug( const char *, ... ) // print debug message
#if defined(Q_CC_GNU) &amp;&amp; !defined(__INSURE__)
__attribute__ ((format (printf, 1, 2)))
#endif
;
Q_EXPORT void qWarning( const char *, ... ) // print warning message
Q_EXPORT void tqWarning( const char *, ... ) // print warning message
#if defined(Q_CC_GNU) &amp;&amp; !defined(__INSURE__)
__attribute__ ((format (printf, 1, 2)))
#endif
;
Q_EXPORT void qFatal( const char *, ... ) // print fatal message and exit
Q_EXPORT void tqFatal( const char *, ... ) // print fatal message and exit
#if defined(Q_CC_GNU)
__attribute__ ((format (printf, 1, 2)))
#endif
;
Q_EXPORT void qSystemWarning( const char *, int code = -1 );
Q_EXPORT void tqSystemWarning( const char *, int code = -1 );
#if !defined(QT_CLEAN_NAMESPACE) // compatibility with Qt 1
@ -1049,9 +1049,9 @@ Q_EXPORT void fatal( const char *, ... ) // print fatal message and exit
#if !defined(Q_ASSERT)
# if defined(QT_CHECK_STATE)
# if defined(QT_FATAL_ASSERT)
# define Q_ASSERT(x) ((x) ? (void)0 : qFatal("ASSERT: \"%s\" in %s (%d)",#x,__FILE__,__LINE__))
# define Q_ASSERT(x) ((x) ? (void)0 : tqFatal("ASSERT: \"%s\" in %s (%d)",#x,__FILE__,__LINE__))
# else
# define Q_ASSERT(x) ((x) ? (void)0 : qWarning("ASSERT: \"%s\" in %s (%d)",#x,__FILE__,__LINE__))
# define Q_ASSERT(x) ((x) ? (void)0 : tqWarning("ASSERT: \"%s\" in %s (%d)",#x,__FILE__,__LINE__))
# endif
# else
# define Q_ASSERT(x)
@ -1090,27 +1090,27 @@ Q_EXPORT QtMsgHandler qInstallMsgHandler( QtMsgHandler );
typedef QtMsgHandler msg_handler;
#endif // QT_NO_COMPAT
Q_EXPORT void qSuppressObsoleteWarnings( bool = TRUE );
Q_EXPORT void tqSuppressObsoleteWarnings( bool = TRUE );
Q_EXPORT void qObsolete( const char *obj, const char *oldfunc,
Q_EXPORT void tqObsolete( const char *obj, const char *oldfunc,
const char *newfunc );
Q_EXPORT void qObsolete( const char *obj, const char *oldfunc );
Q_EXPORT void qObsolete( const char *message );
Q_EXPORT void tqObsolete( const char *obj, const char *oldfunc );
Q_EXPORT void tqObsolete( const char *message );
//
// Install paths from configure
//
Q_EXPORT const char *qInstallPath();
Q_EXPORT const char *qInstallPathDocs();
Q_EXPORT const char *qInstallPathHeaders();
Q_EXPORT const char *qInstallPathLibs();
Q_EXPORT const char *qInstallPathBins();
Q_EXPORT const char *qInstallPathPlugins();
Q_EXPORT const char *qInstallPathData();
Q_EXPORT const char *qInstallPathTranslations();
Q_EXPORT const char *qInstallPathSysconf();
Q_EXPORT const char *tqInstallPath();
Q_EXPORT const char *tqInstallPathDocs();
Q_EXPORT const char *tqInstallPathHeaders();
Q_EXPORT const char *tqInstallPathLibs();
Q_EXPORT const char *tqInstallPathBins();
Q_EXPORT const char *tqInstallPathPlugins();
Q_EXPORT const char *tqInstallPathData();
Q_EXPORT const char *tqInstallPathTranslations();
Q_EXPORT const char *tqInstallPathSysconf();
#endif /* __cplusplus */
@ -1125,7 +1125,7 @@ Q_EXPORT const char *qInstallPathSysconf();
#ifdef Q_FULL_TEMPLATE_INSTANTIATION
# define Q_DUMMY_COMPARISON_OPERATOR(C) \
bool operator==( const C&amp; ) const { \
qWarning( #C"::operator==( const "#C"&amp; ) got called." ); \
tqWarning( #C"::operator==( const "#C"&amp; ) got called." ); \
return FALSE; \
}
#else

@ -135,7 +135,7 @@ body { background: #ffffff; color: black; }
</pre>
<p>Use <em>qmake</em> as before to generate a makefile. If you rename <em>main.cpp</em> temporarily, you will see the message and <em>qmake</em> will stop processing.</p>
<h3><a name="6"></a>Checking for more than one condition</h3>
<p>Suppose you use Windows and you want to be able to see the qDebug() statements when you run your application on the command line. Unless you build your application with the console setting, you won't see the output. We can easily put <em>console</em> on the CONFIG line so that on Windows the makefile will have this setting. But let's say that we only want to add the CONFIG line if we are running on Windows <em>and</em> when <em>debug</em> is already on the CONFIG line. This requires using two nested scopes; just create one scope, then create the other inside that one. Put the settings to be processed inside the last scope, like this:</p>
<p>Suppose you use Windows and you want to be able to see the tqDebug() statements when you run your application on the command line. Unless you build your application with the console setting, you won't see the output. We can easily put <em>console</em> on the CONFIG line so that on Windows the makefile will have this setting. But let's say that we only want to add the CONFIG line if we are running on Windows <em>and</em> when <em>debug</em> is already on the CONFIG line. This requires using two nested scopes; just create one scope, then create the other inside that one. Put the settings to be processed inside the last scope, like this:</p>
<pre>
win32 {
debug {

@ -612,7 +612,7 @@ Q_INLINE_TEMPLATES Q_TYPENAME QMapPrivate&lt;Key,T&gt;::Iterator QMapPrivate&lt;
#ifdef QT_CHECK_RANGE
# if !defined( QT_NO_DEBUG ) &amp;&amp; defined( QT_CHECK_MAP_RANGE )
# define QT_CHECK_INVALID_MAP_ELEMENT if ( empty() ) qWarning( "QMap: Warning invalid element" )
# define QT_CHECK_INVALID_MAP_ELEMENT if ( empty() ) tqWarning( "QMap: Warning invalid element" )
# define QT_CHECK_INVALID_MAP_ELEMENT_FATAL Q_ASSERT( !empty() );
# else
# define QT_CHECK_INVALID_MAP_ELEMENT

@ -245,13 +245,13 @@ private: // Disabled copy constructor and operator=
* }
*/
#define QT_REQUIRE_VERSION( argc, argv, str ) { QString s=QString::fromLatin1(str);\
QString sq=QString::fromLatin1(qVersion()); if ( (sq.section('.',0,0).toInt()&lt;&lt;16)+\
QString sq=QString::fromLatin1(tqVersion()); if ( (sq.section('.',0,0).toInt()&lt;&lt;16)+\
(sq.section('.',1,1).toInt()&lt;&lt;8)+sq.section('.',2,2).toInt()&lt;(s.section('.',0,0).toInt()&lt;&lt;16)+\
(s.section('.',1,1).toInt()&lt;&lt;8)+s.section('.',2,2).toInt() ){if ( !qApp){ int c=0; new \
QApplication(argc,argv);} QString s = QApplication::tr("Executable '%1' requires Qt "\
"%2, found Qt %3.").arg(QString::fromLatin1(qAppName())).arg(QString::fromLatin1(\
str)).arg(QString::fromLatin1(qVersion()) ); QMessageBox::critical( 0, QApplication::tr(\
"Incompatible Qt Library Error" ), s, QMessageBox::Abort,0 ); qFatal(s.ascii()); }}
str)).arg(QString::fromLatin1(tqVersion()) ); QMessageBox::critical( 0, QApplication::tr(\
"Incompatible Qt Library Error" ), s, QMessageBox::Abort,0 ); tqFatal(s.ascii()); }}
#endif // QT_NO_MESSAGEBOX

@ -261,7 +261,7 @@ public:
static bool networkOrdered() {
int wordSize;
bool bigEndian = FALSE;
qSysInfo( &amp;wordSize, &amp;bigEndian );
tqSysInfo( &amp;wordSize, &amp;bigEndian );
return bigEndian;
}

@ -100,7 +100,7 @@ public:
QStrList&amp; operator=( const QStrList &amp; );
private:
QPtrCollection::Item newItem( QPtrCollection::Item d ) { return dc ? qstrdup( (const char*)d ) : d; }
QPtrCollection::Item newItem( QPtrCollection::Item d ) { return dc ? tqstrdup( (const char*)d ) : d; }
void deleteItem( QPtrCollection::Item d ) { if ( del_item ) delete[] (char*)d; }
int compareItems( QPtrCollection::Item s1, QPtrCollection::Item s2 ) { return qstrcmp((const char*)s1,
(const char*)s2); }
@ -121,7 +121,7 @@ public:
~QStrIList() { clear(); }
private:
int compareItems( QPtrCollection::Item s1, QPtrCollection::Item s2 )
{ return qstricmp((const char*)s1,
{ return tqstricmp((const char*)s1,
(const char*)s2); }
};

@ -431,7 +431,7 @@ Q_INLINE_TEMPLATES void QValueListPrivate&lt;T&gt;::clear()
#ifdef QT_CHECK_RANGE
# if !defined( QT_NO_DEBUG ) &amp;&amp; defined( QT_CHECK_VALUELIST_RANGE )
# define QT_CHECK_INVALID_LIST_ELEMENT if ( empty() ) qWarning( "QValueList: Warning invalid element" )
# define QT_CHECK_INVALID_LIST_ELEMENT if ( empty() ) tqWarning( "QValueList: Warning invalid element" )
# define QT_CHECK_INVALID_LIST_ELEMENT_FATAL Q_ASSERT( !empty() );
# else
# define QT_CHECK_INVALID_LIST_ELEMENT

@ -221,8 +221,8 @@ Q_EXPORT const char *qAppName(); // get application name
// Misc functions
typedef void (*QtCleanUpFunction)();
Q_EXPORT void qAddPostRoutine( QtCleanUpFunction );
Q_EXPORT void qRemovePostRoutine( QtCleanUpFunction );
Q_EXPORT void tqAddPostRoutine( QtCleanUpFunction );
Q_EXPORT void tqRemovePostRoutine( QtCleanUpFunction );
#if !defined(QT_CLEAN_NAMESPACE)
// source compatibility with Qt 2.x

@ -78,7 +78,7 @@ limit the possible range of <tt>minVal</tt> and <tt>maxVal</tt> to 0..99 to avoi
overflow of the QLCDNumber. (We could have allowed values down to -9
but chose not to.) If the arguments are illegal, we use Qt's
<a href="qapplication.html#qWarning">qWarning</a>() function to issue a warning to the user and return
immediately. qWarning() is a printf-like function that by default
immediately. tqWarning() is a printf-like function that by default
sends its output to <tt>stderr</tt>. If you want, you can install your own handler
function using <a href="qapplication.html#qInstallMsgHandler">::qInstallMsgHandler</a>().
<p> <h3> <a href="t8-cannon-h.html">t8/cannon.h</a>

@ -297,8 +297,8 @@ example:
QString s1 = "%1 of %2 files copied. Copying: %3";
QString s2 = "Kopierer nu %3. Av totalt %2 filer er %1 kopiert.";
qDebug( s1.arg(5).arg(10).arg("somefile.txt").ascii() );
qDebug( s2.arg(5).arg(10).arg("somefile.txt").ascii() );
tqDebug( s1.arg(5).arg(10).arg("somefile.txt").ascii() );
tqDebug( s2.arg(5).arg(10).arg("somefile.txt").ascii() );
\endcode
produces the correct output in English and Norwegian:

@ -177,7 +177,7 @@ do this:
kCFURLPOSIXPathStyle);
const char *pathPtr = CFStringGetCStringPtr(macPath,
CFStringGetSystemEncoding());
qDebug("Path = %s", pathPtr);
tqDebug("Path = %s", pathPtr);
CFRelease(pluginRef);
CFRelease(macPath);
\endcode

@ -1696,7 +1696,7 @@ Example:
.br
.fi
.PP
If \fCb\fR is zero, the Q_ASSERT statement will output the following message using the qWarning() function:
If \fCb\fR is zero, the Q_ASSERT statement will output the following message using the tqWarning() function:
.PP
.nf
.br
@ -1704,7 +1704,7 @@ If \fCb\fR is zero, the Q_ASSERT statement will output the following message usi
.br
.fi
.PP
See also qWarning() and Debugging.
See also tqWarning() and Debugging.
.SH "void Q_CHECK_PTR ( void * p )"
If \fIp\fR is 0, prints a warning message containing the source code file name and line number, saying that the program ran out of memory.
.PP
@ -1726,8 +1726,8 @@ Example:
.br
.fi
.PP
See also qWarning() and Debugging.
.SH "void qAddPostRoutine ( QtCleanUpFunction p )"
See also tqWarning() and Debugging.
.SH "void tqAddPostRoutine ( QtCleanUpFunction p )"
Adds a global routine that will be called from the QApplication destructor. This function is normally used to add cleanup routines for program-wide functionality.
.PP
The function given by \fIp\fR should take no arguments and return nothing, like this:
@ -1754,13 +1754,13 @@ The function given by \fIp\fR should take no arguments and return nothing, like
.br
global_ptr = new int[100]; // allocate data
.br
qAddPostRoutine( cleanup_ptr ); // delete later
tqAddPostRoutine( cleanup_ptr ); // delete later
.br
}
.br
.fi
.PP
Note that for an application- or module-wide cleanup, qAddPostRoutine() is often not suitable. People have a tendency to make such modules dynamically loaded, and then unload those modules long before the QApplication destructor is called, for example.
Note that for an application- or module-wide cleanup, tqAddPostRoutine() is often not suitable. People have a tendency to make such modules dynamically loaded, and then unload those modules long before the QApplication destructor is called, for example.
.PP
For modules and libraries, using a reference-counted initialization manager or Qt' parent-child delete mechanism may be better. Here is an example of a private class which uses the parent-child mechanism to call a cleanup function at the right time:
.PP
@ -1803,7 +1803,7 @@ For modules and libraries, using a reference-counted initialization manager or Q
.fi
.PP
By selecting the right parent widget/object, this can often be made to clean up the module's data at the exact right moment.
.SH "void qDebug ( const char * msg, ... )"
.SH "void tqDebug ( const char * msg, ... )"
Prints a debug message \fImsg\fR, or calls the message handler (if it has been installed).
.PP
This function takes a format string and a list of arguments, similar to the C printf() function.
@ -1812,7 +1812,7 @@ Example:
.PP
.nf
.br
qDebug( "my window handle = %x", myWidget->id() );
tqDebug( "my window handle = %x", myWidget->id() );
.br
.fi
.PP
@ -1820,10 +1820,10 @@ Under X11, the text is printed to stderr. Under Windows, the text is sent to the
.PP
\fBWarning:\fR The internal buffer is limited to 8196 bytes (including the '&#92;0'-terminator).
.PP
\fBWarning:\fR Passing (const char *)0 as argument to qDebug might lead to crashes on certain platforms due to the platforms printf implementation.
\fBWarning:\fR Passing (const char *)0 as argument to tqDebug might lead to crashes on certain platforms due to the platforms printf implementation.
.PP
See also qWarning(), qFatal(), qInstallMsgHandler(), and Debugging.
.SH "void qFatal ( const char * msg, ... )"
See also tqWarning(), tqFatal(), qInstallMsgHandler(), and Debugging.
.SH "void tqFatal ( const char * msg, ... )"
Prints a fatal error message \fImsg\fR and exits, or calls the message handler (if it has been installed).
.PP
This function takes a format string and a list of arguments, similar to the C printf() function.
@ -1838,7 +1838,7 @@ Example:
.br
if ( b == 0 ) // program error
.br
qFatal( "divide: cannot divide by zero" );
tqFatal( "divide: cannot divide by zero" );
.br
return a/b;
.br
@ -1850,9 +1850,9 @@ Under X11, the text is printed to stderr. Under Windows, the text is sent to the
.PP
\fBWarning:\fR The internal buffer is limited to 8196 bytes (including the '&#92;0'-terminator).
.PP
\fBWarning:\fR Passing (const char *)0 as argument to qFatal might lead to crashes on certain platforms due to the platforms printf implementation.
\fBWarning:\fR Passing (const char *)0 as argument to tqFatal might lead to crashes on certain platforms due to the platforms printf implementation.
.PP
See also qDebug(), qWarning(), qInstallMsgHandler(), and Debugging.
See also tqDebug(), tqWarning(), qInstallMsgHandler(), and Debugging.
.SH "QtMsgHandler qInstallMsgHandler ( QtMsgHandler h )"
Installs a Qt message handler \fIh\fR. Returns a pointer to the message handler previously defined.
.PP
@ -1920,22 +1920,22 @@ Example:
.br
.fi
.PP
See also qDebug(), qWarning(), qFatal(), and Debugging.
.SH "bool qSysInfo ( int * wordSize, bool * bigEndian )"
See also tqDebug(), tqWarning(), tqFatal(), and Debugging.
.SH "bool tqSysInfo ( int * wordSize, bool * bigEndian )"
Obtains information about the system.
.PP
The system's word size in bits (typically 32) is returned in \fI*wordSize\fR. The \fI*bigEndian\fR is set to TRUE if this is a big-endian machine, or to FALSE if this is a little-endian machine.
.PP
In debug mode, this function calls qFatal() with a message if the computer is truly weird (i.e. different endianness for 16 bit and 32 bit integers); in release mode it returns FALSE.
.SH "void qSystemWarning ( const char * msg, int code )"
In debug mode, this function calls tqFatal() with a message if the computer is truly weird (i.e. different endianness for 16 bit and 32 bit integers); in release mode it returns FALSE.
.SH "void tqSystemWarning ( const char * msg, int code )"
Prints the message \fImsg\fR and uses \fIcode\fR to get a system specific error message. When \fIcode\fR is -1 (the default), the system's last error code will be used if possible. Use this method to handle failures in platform specific API calls.
.PP
This function does nothing when Qt is built with \fCQT_NO_DEBUG\fR defined.
.SH "const char * qVersion ()"
.SH "const char * tqVersion ()"
Returns the Qt version number as a string, for example, "2.3.0" or" 3.0.5".
.PP
The \fCQT_VERSION\fR define has the numeric value in the form: 0xmmiibb (m = major, i = minor, b = bugfix). For example, Qt 3.0.5's \fCQT_VERSION\fR is 0x030005.
.SH "void qWarning ( const char * msg, ... )"
.SH "void tqWarning ( const char * msg, ... )"
Prints a warning message \fImsg\fR, or calls the message handler (if it has been installed).
.PP
This function takes a format string and a list of arguments, similar to the C printf() function.
@ -1950,7 +1950,7 @@ Example:
.br
if ( c > 200 )
.br
qWarning( "f: bad argument, c == %d", c );
tqWarning( "f: bad argument, c == %d", c );
.br
}
.br
@ -1960,9 +1960,9 @@ Under X11, the text is printed to stderr. Under Windows, the text is sent to the
.PP
\fBWarning:\fR The internal buffer is limited to 8196 bytes (including the '&#92;0'-terminator).
.PP
\fBWarning:\fR Passing (const char *)0 as argument to qWarning might lead to crashes on certain platforms due to the platforms printf implementation.
\fBWarning:\fR Passing (const char *)0 as argument to tqWarning might lead to crashes on certain platforms due to the platforms printf implementation.
.PP
See also qDebug(), qFatal(), qInstallMsgHandler(), and Debugging.
See also tqDebug(), tqFatal(), qInstallMsgHandler(), and Debugging.
.SH "SEE ALSO"
.BR http://doc.trolltech.com/qapplication.html

@ -151,7 +151,7 @@ See also maxCost() and totalCost().
.SH "uint QAsciiCache::size () const"
Returns the size of the hash array used to implement the cache. This should be a bit bigger than count() is likely to be.
.SH "void QAsciiCache::statistics () const"
A debug-only utility function. Prints out cache usage, hit/miss, and distribution information using qDebug(). This function does nothing in the release library.
A debug-only utility function. Prints out cache usage, hit/miss, and distribution information using tqDebug(). This function does nothing in the release library.
.SH "type * QAsciiCache::take ( const char * k )"
Takes the item associated with \fIk\fR out of the cache without deleting it and returns a pointer to the item taken out, or 0 if the key does not exist in the cache.
.PP

@ -275,7 +275,7 @@ Returns the size of the internal hash array (as specified in the constructor).
.PP
See also count().
.SH "void QAsciiDict::statistics () const"
Debugging-only function that prints out the dictionary distribution using qDebug().
Debugging-only function that prints out the dictionary distribution using tqDebug().
.SH "type * QAsciiDict::take ( const char * key )"
Takes the item associated with \fIkey\fR out of the dictionary without deleting it (even if auto-deletion is enabled).
.PP

@ -53,11 +53,11 @@ Constructs an empty QByteArray.
.SH "QByteArray::QByteArray ( int size )"
Constructs a QByteArray of size \fIsize\fR.
.SH RELATED FUNCTION DOCUMENTATION
.SH "QByteArray qCompress ( const QByteArray & data )"
.SH "QByteArray tqCompress ( const QByteArray & data )"
Compresses the array \fIdata\fR and returns the compressed byte array using zlib.
.PP
See also qUncompress().
.SH "QByteArray qCompress ( const uchar * data, int nbytes )"
.SH "QByteArray tqCompress ( const uchar * data, int nbytes )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Compresses the array \fIdata\fR which is \fInbytes\fR long and returns the compressed byte array.
@ -66,7 +66,7 @@ Uncompresses the array \fIdata\fR and returns the uncompressed byte array.
.PP
Returns an empty QByteArray if the input data was corrupt.
.PP
See also qCompress().
See also tqCompress().
.SH "QByteArray qUncompress ( const uchar * data, int nbytes )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP

@ -175,7 +175,7 @@ See also maxCost() and totalCost().
.SH "uint QCache::size () const"
Returns the size of the hash array used to implement the cache. This should be a bit bigger than count() is likely to be.
.SH "void QCache::statistics () const"
A debug-only utility function. Prints out cache usage, hit/miss, and distribution information using qDebug(). This function does nothing in the release library.
A debug-only utility function. Prints out cache usage, hit/miss, and distribution information using tqDebug(). This function does nothing in the release library.
.SH "type * QCache::take ( const QString & k )"
Takes the item associated with \fIk\fR out of the cache without deleting it, and returns a pointer to the item taken out, or 0 if the key does not exist in the cache.
.PP

@ -68,7 +68,7 @@ If you want users to be able to interact with a canvas view, subclass QCanvasVie
.br
if ( (*it)->rtti() == QCanvasRectangle::RTTI )
.br
qDebug("A QCanvasRectangle lies somewhere at this point");
tqDebug("A QCanvasRectangle lies somewhere at this point");
.br
}
.br

@ -125,7 +125,7 @@ Example:
.br
if ( !text.isNull() )
.br
qDebug( "The clipboard contains: " + text );
tqDebug( "The clipboard contains: " + text );
.br
.br
// Copy text into the clipboard

@ -1041,7 +1041,7 @@ See also Note on character comparisons.
Reads a string into \fIstr\fR from the stream \fIs\fR.
.PP
See also Format of the QDataStream operators.
.SH "void * qmemmove ( void * dst, const void * src, uint len )"
.SH "void * tqmemmove ( void * dst, const void * src, uint len )"
This function is normally part of the C library. Qt implements memmove() for platforms that do not provide it.
.PP
memmove() copies \fIlen\fR bytes from \fIsrc\fR into \fIdst\fR. The data is copied correctly even if \fIsrc\fR and \fIdst\fR overlap.
@ -1054,18 +1054,18 @@ Special case I: Returns 0 if \fIstr1\fR and \fIstr2\fR are both 0.
.PP
Special case II: Returns a random nonzero value if \fIstr1\fR is 0 or \fIstr2\fR is 0 (but not both).
.PP
See also qstrncmp(), qstricmp(), qstrnicmp(), and Note on character comparisons.
See also qstrncmp(), tqstricmp(), tqstrnicmp(), and Note on character comparisons.
.SH "char * qstrcpy ( char * dst, const char * src )"
A safe strcpy() function.
.PP
Copies all characters up to and including the '&#92;0' from \fIsrc\fR into \fIdst\fR and returns a pointer to \fIdst\fR.
.SH "char * qstrdup ( const char * src )"
.SH "char * tqstrdup ( const char * src )"
Returns a duplicate string.
.PP
Allocates space for a copy of \fIsrc\fR, copies it, and returns a pointer to the copy. If \fIsrc\fR is 0, it immediately returns 0.
.PP
The returned string must be deleted using \fCdelete[]\fR.
.SH "int qstricmp ( const char * str1, const char * str2 )"
.SH "int tqstricmp ( const char * str1, const char * str2 )"
A safe stricmp() function.
.PP
Compares \fIstr1\fR and \fIstr2\fR ignoring the case.
@ -1076,7 +1076,7 @@ Special case I: Returns 0 if \fIstr1\fR and \fIstr2\fR are both 0.
.PP
Special case II: Returns a random nonzero value if \fIstr1\fR is 0 or \fIstr2\fR is 0 (but not both).
.PP
See also qstrcmp(), qstrncmp(), qstrnicmp(), and Note on character comparisons.
See also qstrcmp(), qstrncmp(), tqstrnicmp(), and Note on character comparisons.
.SH "uint qstrlen ( const char * str )"
A safe strlen function.
.PP
@ -1092,14 +1092,14 @@ Special case I: Returns 0 if \fIstr1\fR and \fIstr2\fR are both 0.
.PP
Special case II: Returns a random nonzero value if \fIstr1\fR is 0 or \fIstr2\fR is 0 (but not both).
.PP
See also qstrcmp(), qstricmp(), qstrnicmp(), and Note on character comparisons.
.SH "char * qstrncpy ( char * dst, const char * src, uint len )"
See also qstrcmp(), tqstricmp(), tqstrnicmp(), and Note on character comparisons.
.SH "char * tqstrncpy ( char * dst, const char * src, uint len )"
A safe strncpy() function.
.PP
Copies at most \fIlen\fR bytes from \fIsrc\fR (stopping at \fIlen\fR or the terminating '&#92;0' whichever comes first) into \fIdst\fR and returns a pointer to \fIdst\fR. Guarantees that \fIdst\fR is '&#92;0'-terminated. If \fIsrc\fR or \fIdst\fR is 0, returns 0 immediately.
.PP
See also qstrcpy().
.SH "int qstrnicmp ( const char * str1, const char * str2, uint len )"
.SH "int tqstrnicmp ( const char * str1, const char * str2, uint len )"
A safe strnicmp() function.
.PP
Compares at most \fIlen\fR bytes of \fIstr1\fR and \fIstr2\fR ignoring the case.
@ -1110,7 +1110,7 @@ Special case I: Returns 0 if \fIstr1\fR and \fIstr2\fR are both 0.
.PP
Special case II: Returns a random nonzero value if \fIstr1\fR is 0 or \fIstr2\fR is 0 (but not both).
.PP
See also qstrcmp(), qstrncmp(), qstricmp(), and Note on character comparisons.
See also qstrcmp(), qstrncmp(), tqstricmp(), and Note on character comparisons.
.SH "SEE ALSO"
.BR http://doc.trolltech.com/qcstring.html

@ -219,7 +219,7 @@ Example:
.br
QDateTime xmas( QDate(dt.date().year(),12,24), QTime(17,00) );
.br
qDebug( "There are %d seconds to Christmas", dt.secsTo(xmas) );
tqDebug( "There are %d seconds to Christmas", dt.secsTo(xmas) );
.br
.fi
.PP

@ -332,7 +332,7 @@ Returns the size of the internal hash array (as specified in the constructor).
.PP
See also count().
.SH "void QDict::statistics () const"
Debugging-only function that prints out the dictionary distribution using qDebug().
Debugging-only function that prints out the dictionary distribution using tqDebug().
.SH "type * QDict::take ( const QString & key )"
Takes the item with \fIkey\fR out of the dictionary without deleting it (even if auto-deletion is enabled).
.PP

@ -233,7 +233,7 @@ See if a directory exists.
.br
if ( !d.exists() )
.br
qWarning( "Cannot find the example directory" );
tqWarning( "Cannot find the example directory" );
.br
.fi
.PP
@ -245,7 +245,7 @@ Traversing directories and reading a file.
.br
if ( !d.cd("tmp") ) { // "/tmp"
.br
qWarning( "Cannot find the \\"/tmp\\" directory" );
tqWarning( "Cannot find the \\"/tmp\\" directory" );
.br
} else {
.br
@ -253,7 +253,7 @@ Traversing directories and reading a file.
.br
if ( !f.open(IO_ReadWrite) )
.br
qWarning( "Cannot create the file %s", f.name() );
tqWarning( "Cannot create the file %s", f.name() );
.br
}
.br
@ -615,7 +615,7 @@ Note: If the directory is a symbolic link to the root directory this function re
.br
if ( d.isRoot() )
.br
qWarning( "It is a root link" );
tqWarning( "It is a root link" );
.br
.fi
.PP
@ -663,7 +663,7 @@ Example:
.br
if ( d1 != d2 )
.br
qDebug( "They differ" );
tqDebug( "They differ" );
.br
.fi
.SH "QDir & QDir::operator= ( const QDir & d )"
@ -689,7 +689,7 @@ Example:
.br
if ( d1 == d2 )
.br
qDebug( "They're the same" );
tqDebug( "They're the same" );
.br
.fi
.SH "QString QDir::operator[] ( int index ) const"

@ -43,7 +43,7 @@ There are two ways to use this class: <ol type=1>
.IP 1
For production applications. In this context the class can be used to display messages which you don't need the user to see more than once. To use QErrorMessage like this, you create the dialog in the usual way and call the message() slot, or connect signals to it.
.IP 2
For developers. In this context the static qtHandler() installs a message handler using qInstallMsgHandler() and creates a QErrorMessage that displays qDebug(), qWarning() and qFatal() messages.
For developers. In this context the static qtHandler() installs a message handler using qInstallMsgHandler() and creates a QErrorMessage that displays tqDebug(), tqWarning() and tqFatal() messages.
.PP
In both cases QErrorMessage will queue pending messages, and display them (or not) in order, as soon as the user presses Enter or clicks OK after seeing each message.
.PP

@ -429,11 +429,11 @@ Example:
.br
if ( fi.permission( QFileInfo::WriteUser | QFileInfo::ReadGroup ) )
.br
qWarning( "I can change the file; my group can read the file" );
tqWarning( "I can change the file; my group can read the file" );
.br
if ( fi.permission( QFileInfo::WriteGroup | QFileInfo::WriteOther ) )
.br
qWarning( "The group or others can change the file" );
tqWarning( "The group or others can change the file" );
.br
.fi
.PP

@ -147,7 +147,7 @@ int main( int argc, char **argv )
.br
QString family = *f;
.br
qDebug( family );
tqDebug( family );
.br
QStringList styles = fdb.styles( family );
.br
@ -169,7 +169,7 @@ int main( int argc, char **argv )
.br
dstyle = dstyle.left( dstyle.length() - 1 ) + ")";
.br
qDebug( dstyle );
tqDebug( dstyle );
.br
}
.br

@ -156,7 +156,7 @@ If you want to use QFtp with the QNetworkProtocol interface, you do not use it d
.br
.fi
.PP
This code will only work if the QFtp class is registered; to register the class, you must call qInitNetworkProtocols() before using a QUrlOperator with QFtp.
This code will only work if the QFtp class is registered; to register the class, you must call tqInitNetworkProtocols() before using a QUrlOperator with QFtp.
.PP
The rest of this descrption describes the direct interface to FTP.
.PP

@ -184,7 +184,7 @@ After the widget has been created, you can find out which of the requested featu
.br
if ( !w->format().hasOverlay() ) {
.br
qFatal( "Cool hardware required" );
tqFatal( "Cool hardware required" );
.br
}
.br
@ -239,11 +239,11 @@ This constructor makes it easy to specify a certain desired format in classes de
.br
if ( !format().stencil() )
.br
qWarning( "Could not get stencil buffer; results will be suboptimal" );
tqWarning( "Could not get stencil buffer; results will be suboptimal" );
.br
if ( !format().alphaChannel() )
.br
qWarning( "Could not get alpha channel; results will be suboptimal" );
tqWarning( "Could not get alpha channel; results will be suboptimal" );
.br
...
.br

@ -75,7 +75,7 @@ Example:
.br
else
.br
qDebug("The label has been destroyed");
tqDebug("The label has been destroyed");
.br
.fi
.PP

@ -144,7 +144,7 @@ If you want to use QHttp with the QNetworkProtocol interface, you do not use it
.br
.fi
.PP
This code will only work if the QHttp class is registered; to register the class, you must call qInitNetworkProtocols() before using a QUrlOperator with HTTP.
This code will only work if the QHttp class is registered; to register the class, you must call tqInitNetworkProtocols() before using a QUrlOperator with HTTP.
.PP
The QNetworkProtocol interface for HTTP only supports the operations operationGet() and operationPut(), i.e. QUrlOperator::get() and QUrlOperator::put(), if you use it with a QUrlOperator.
.PP

@ -145,7 +145,7 @@ See also maxCost() and totalCost().
.SH "uint QIntCache::size () const"
Returns the size of the hash array used to implement the cache. This should be a bit larger than count() is likely to be.
.SH "void QIntCache::statistics () const"
A debug-only utility function. Prints out cache usage, hit/miss, and distribution information using qDebug(). This function does nothing in the release library.
A debug-only utility function. Prints out cache usage, hit/miss, and distribution information using tqDebug(). This function does nothing in the release library.
.SH "type * QIntCache::take ( long k )"
Takes the item associated with \fIk\fR out of the cache without deleting it, and returns a pointer to the item taken out or 0 if the key does not exist in the cache.
.PP

@ -271,7 +271,7 @@ Returns the size of the internal hash array (as specified in the constructor).
.PP
See also count().
.SH "void QIntDict::statistics () const"
Debugging-only function that prints out the dictionary distribution using qDebug().
Debugging-only function that prints out the dictionary distribution using tqDebug().
.SH "type * QIntDict::take ( long key )"
Takes the item associated with \fIkey\fR out of the dictionary without deleting it (even if auto-deletion is enabled).
.PP

@ -32,7 +32,7 @@ This class is derived from QNetworkProtocol. QLocalFs is not normally used direc
.br
.fi
.PP
This code will only work if the QLocalFs class is registered; to register the class, you must call qInitNetworkProtocols() before using a QUrlOperator with QLocalFs.
This code will only work if the QLocalFs class is registered; to register the class, you must call tqInitNetworkProtocols() before using a QUrlOperator with QLocalFs.
.PP
If you really need to use QLocalFs directly, don't forget to set its QUrlOperator with setUrl().
.PP

@ -203,12 +203,12 @@ Example:
.br
for ( int i = 0; i < a.size(); i++ )
.br
qDebug( "%d: %d", i, a[i] );
tqDebug( "%d: %d", i, a[i] );
.br
.br
qDebug( "1 is found %d times", a.contains(1) );
tqDebug( "1 is found %d times", a.contains(1) );
.br
qDebug( "5 is found at index %d", a.find(5) );
tqDebug( "5 is found at index %d", a.find(5) );
.br
.br
return 0;
@ -540,7 +540,7 @@ See also Format of the QDataStream operators.
Reads a byte array into \fIa\fR from the stream \fIs\fR and returns a reference to the stream.
.PP
See also Format of the QDataStream operators.
.SH "Q_UINT16 qChecksum ( const char * data, uint len )"
.SH "Q_UINT16 tqChecksum ( const char * data, uint len )"
Returns the CRC-16 checksum of \fIlen\fR bytes starting at \fIdata\fR.
.PP
The checksum is independent of the byte order (endianness).

@ -555,7 +555,7 @@ Example:
.br
QKeyEvent *k = (QKeyEvent*)ev;
.br
qDebug( "Ate key press %d", k->key() );
tqDebug( "Ate key press %d", k->key() );
.br
return TRUE;
.br
@ -668,7 +668,7 @@ Here's a \fCKeyPressEater\fR class that eats the key presses of its monitored ob
.br
QKeyEvent *k = (QKeyEvent *)e;
.br
qDebug( "Ate key press %d", k->key() );
tqDebug( "Ate key press %d", k->key() );
.br
return TRUE; // eat event
.br
@ -903,7 +903,7 @@ Example:
.br
{
.br
qDebug( "timer event, id %d", e->timerId() );
tqDebug( "timer event, id %d", e->timerId() );
.br
}
.br
@ -945,11 +945,11 @@ You can find an object by name (and type) using child(). You can find a set of o
.PP
The object name is set by the constructor or by the setName() function. The object name is not very useful in the current version of Qt, but will become increasingly important in the future.
.PP
If the object does not have a name, the name() function returns" unnamed", so printf() (used in qDebug()) will not be asked to output a null pointer. If you want a null pointer to be returned for unnamed objects, you can call name( 0 ).
If the object does not have a name, the name() function returns" unnamed", so printf() (used in tqDebug()) will not be asked to output a null pointer. If you want a null pointer to be returned for unnamed objects, you can call name( 0 ).
.PP
.nf
.br
qDebug( "MyClass::setPrecision(): (%s) invalid precision %f",
tqDebug( "MyClass::setPrecision(): (%s) invalid precision %f",
.br
name(), newPrecision );
.br

@ -273,7 +273,7 @@ Returns the size of the internal hash table (as specified in the constructor).
.PP
See also count().
.SH "void QPtrDict::statistics () const"
Debugging-only function that prints out the dictionary distribution using qDebug().
Debugging-only function that prints out the dictionary distribution using tqDebug().
.SH "type * QPtrDict::take ( void * key )"
Takes the item associated with \fIkey\fR out of the dictionary without deleting it (even if auto-deletion is enabled).
.PP

@ -193,7 +193,7 @@ For example:
.br
while ( cur.next() ) {
.br
qDebug( cur.value( "id" ).toString() + ": " +
tqDebug( cur.value( "id" ).toString() + ": " +
.br
cur.value( "surname" ).toString() + " " +
.br

@ -358,7 +358,7 @@ The bound values can be examined in the following way:
.br
for ( it = vals.begin(); it != vals.end(); ++it )
.br
qWarning( "Placeholder: " + it.key() + ", Value: " + (*it).toString() );
tqWarning( "Placeholder: " + it.key() + ", Value: " + (*it).toString() );
.br
...
.br
@ -373,7 +373,7 @@ The bound values can be examined in the following way:
.br
for ( it = list.begin(); it != list.end(); ++it )
.br
qWarning( "Placeholder pos: %d, Value: " + (*it).toString(), i++ );
tqWarning( "Placeholder pos: %d, Value: " + (*it).toString(), i++ );
.br
...
.br

@ -770,7 +770,7 @@ The following example shows how we could create a 'status' string when processin
.PP
It is generally fine to use filenames and numbers as we have done in the example above. But note that using arg() to construct natural language sentences does not usually translate well into other languages because sentence structure and word order often differ between languages.
.PP
If there is no place marker (\fC%1\fR, \fC%2\fR, etc.), a warning message (qWarning()) is output and the result is undefined.
If there is no place marker (\fC%1\fR, \fC%2\fR, etc.), a warning message (tqWarning()) is output and the result is undefined.
.PP
\fBWarning:\fR If any placeholder occurs more than once, the result is undefined.
.SH "QString QString::arg ( long a, int fieldWidth = 0, int base = 10 ) const"

@ -99,7 +99,7 @@ A QThread represents a separate thread of control within the program; it shares
.br
sleep( 1 );
.br
qDebug( "Ping!" );
tqDebug( "Ping!" );
.br
}
.br

@ -293,7 +293,7 @@ Sets this time to the current time. This is practical for timing:
.br
some_lengthy_task();
.br
qDebug( "Time elapsed: %d ms", t.elapsed() );
tqDebug( "Time elapsed: %d ms", t.elapsed() );
.br
.fi
.PP

@ -149,7 +149,7 @@ If you want to be notified about success/failure, progress, etc., you can connec
.PP
The class uses the functionality of registered network protocols to perform these operations. Depending of the protocol of the URL, it uses an appropriate network protocol class for the operations. Each of the operation functions of QUrlOperator creates a QNetworkOperation object that describes the operation and puts it into the operation queue for the network protocol used. If no suitable protocol could be found (because no implementation of the necessary network protocol is registered), the URL operator emits errors. Not every protocol supports every operation, but error handling deals with this problem.
.PP
To register the available network protocols, use the qInitNetworkProtocols() function. The protocols currently supported are:
To register the available network protocols, use the tqInitNetworkProtocols() function. The protocols currently supported are:
.TP
FTP,
.TP
@ -348,7 +348,7 @@ See also copy().
.SH "void QUrlOperator::stop ()\fC [virtual]\fR"
Stops the current network operation and removes all this QUrlOperator's waiting network operations.
.SH RELATED FUNCTION DOCUMENTATION
.SH "void qInitNetworkProtocols ()"
.SH "void tqInitNetworkProtocols ()"
This function registers the network protocols for FTP and HTTP. You must call this function before you use QUrlOperator for these protocols.
.PP
This function is declared in qnetwork.h.

@ -441,7 +441,7 @@ Here is some example code to demonstrate the use of QVariant:
.br
int z = v.toInt(); // z = 123
.br
qDebug("Type is %s", // prints "Type is int"
tqDebug("Type is %s", // prints "Type is int"
.br
v.typeName());
.br

@ -148,9 +148,9 @@ void MyClass::slotOperationFinished( QNetworkOperation *op )
switch ( op->operation() ) {
case QNetworkProtocol::OpMkDir:
if ( op->state() == QNetworkProtocol::StFailed )
qDebug( "Couldn't create directory %s", op->arg( 0 ).latin1() );
tqDebug( "Couldn't create directory %s", op->arg( 0 ).latin1() );
else
qDebug( "Successfully created directory %s", op->arg( 0 ).latin1() );
tqDebug( "Successfully created directory %s", op->arg( 0 ).latin1() );
break;
// ... and so on
}
@ -179,24 +179,24 @@ void MyClass::slotInsertEntries( const QValueList<QUrlInfo> &info, QNetworkOpera
QValueList<QUrlInfo>::ConstIterator it = info.begin();
for ( ; it != info.end(); ++it ) {
const QUrlInfo &inf = *it;
qDebug( "Name: %s, Size: %d, Last Modified: %s",
tqDebug( "Name: %s, Size: %d, Last Modified: %s",
inf.name().latin1(), inf.size(), inf.lastModified().toString().latin1() );
}
}
void MyClass::slotStart( QNetworkOperation * )
{
qDebug( "Start reading '%s'", op.toString().latin1() );
tqDebug( "Start reading '%s'", op.toString().latin1() );
}
void MyClass::slotFinished( QNetworkOperation *operation )
{
if ( operation->operation() == QNetworkProtocol::OpListChildren ) {
if ( operation->state() == QNetworkProtocol::StFailed )
qDebug( "Couldn't read '%s'! Following error occurred: %s",
tqDebug( "Couldn't read '%s'! Following error occurred: %s",
op.toString().latin1(), operation->protocolDetail().latin1() );
else
qDebug( "Finished reading '%s'!", op.toString().latin1() );
tqDebug( "Finished reading '%s'!", op.toString().latin1() );
}
}

@ -68,7 +68,7 @@ must register them before you can use QUrlOperator. For example, put
the following call in your \c main() function, after creating your
QApplication object:
\code
qInitNetworkProtocols();
tqInitNetworkProtocols();
\endcode
\section1 Network- and Protocol-Transparent Operations
@ -325,7 +325,7 @@ But, before we can use our new protocol, we have to register it first, so QUrlOp
\skipto register
\printline register
This registers Qip protocol and bonds it to prefix "qip". You can use qInitNetworkProtocols() which registers pre coded Ftp (for "ftp") and Http ("http") protocols. Local file system (QLocalFs) is always registered.
This registers Qip protocol and bonds it to prefix "qip". You can use tqInitNetworkProtocols() which registers pre coded Ftp (for "ftp") and Http ("http") protocols. Local file system (QLocalFs) is always registered.
Client implementation (\c network/infoprotocol/infourlclient/client.cpp):

@ -83,7 +83,7 @@ run, Qt will first treat the application's executable directory as the
Files\MyApp} and has a style plugin, Qt will look in \c{C:\Program
Files\MyApp\styles}. (See \l{QApplication::applicationDirPath()} for
how to find out where the application's executable is.) Qt will also
look in the directory given by \c{qInstallPathPlugins()}. If you want
look in the directory given by \c{tqInstallPathPlugins()}. If you want
Qt to look in additional places you can add as many paths as you need
with calls to \c{QApplication::addLibraryPath()}. And if you want to
set your own path or paths you can use

@ -348,8 +348,8 @@ Additionally, these preprocessor directives have been removed:
\i \c {#define strcpy qstrcpy}
\i \c {#define strcmp qstrcmp}
\i \c {#define strncmp qstrncmp}
\i \c {#define stricmp qstricmp}
\i \c {#define strnicmp qstrnicmp}
\i \c {#define stricmp tqstricmp}
\i \c {#define strnicmp tqstrnicmp}
\endlist
See the changes-3.0.0 document for an explanation of why this had to be done.

@ -97,7 +97,7 @@
\internal
Do not use. A QAsciiCache cannot be copied. Calls qFatal() in debug version.
Do not use. A QAsciiCache cannot be copied. Calls tqFatal() in debug version.
*/
@ -139,7 +139,7 @@
\internal
Do not use. A QAsciiCache cannot be copied. Calls qFatal() in debug version.
Do not use. A QAsciiCache cannot be copied. Calls tqFatal() in debug version.
*/
/*!
@ -292,7 +292,7 @@
\fn void QAsciiCache::statistics() const
A debug-only utility function. Prints out cache usage, hit/miss,
and distribution information using qDebug(). This function does
and distribution information using tqDebug(). This function does
nothing in the release library.
*/

@ -308,7 +308,7 @@
\fn void QAsciiDict::statistics() const
Debugging-only function that prints out the dictionary
distribution using qDebug().
distribution using tqDebug().
*/
/*!

@ -98,7 +98,7 @@
\internal
Do not use. A QCache cannot be copied. Calls qFatal() in debug version.
Do not use. A QCache cannot be copied. Calls tqFatal() in debug version.
*/
@ -136,7 +136,7 @@
\internal
Do not use. A QCache cannot be copied. Calls qFatal() in debug version.
Do not use. A QCache cannot be copied. Calls tqFatal() in debug version.
*/
/*!
@ -285,7 +285,7 @@
\fn void QCache::statistics() const
A debug-only utility function. Prints out cache usage, hit/miss,
and distribution information using qDebug(). This function does
and distribution information using tqDebug(). This function does
nothing in the release library.
*/

@ -383,7 +383,7 @@
\fn void QDict::statistics() const
Debugging-only function that prints out the dictionary
distribution using qDebug().
distribution using tqDebug().
*/
/*!

@ -91,7 +91,7 @@
\internal
Do not use. A QCache cannot be copied. Calls qFatal() in debug version.
Do not use. A QCache cannot be copied. Calls tqFatal() in debug version.
*/
/*!
@ -125,7 +125,7 @@
\internal
Do not use. A QIntCache cannot be copied. Calls qFatal() in debug version.
Do not use. A QIntCache cannot be copied. Calls tqFatal() in debug version.
*/
/*!
@ -273,7 +273,7 @@
\fn void QIntCache::statistics() const
A debug-only utility function. Prints out cache usage, hit/miss,
and distribution information using qDebug(). This function does
and distribution information using tqDebug(). This function does
nothing in the release library.
*/

@ -287,7 +287,7 @@
\fn void QIntDict::statistics() const
Debugging-only function that prints out the dictionary
distribution using qDebug().
distribution using tqDebug().
*/
/*!

@ -96,10 +96,10 @@
{
QMemArray<int> a = fib( 6 ); // get first 6 fibonaccis
for ( int i = 0; i < a.size(); i++ )
qDebug( "%d: %d", i, a[i] );
tqDebug( "%d: %d", i, a[i] );
qDebug( "1 is found %d times", a.contains(1) );
qDebug( "5 is found at index %d", a.find(5) );
tqDebug( "1 is found %d times", a.contains(1) );
tqDebug( "5 is found at index %d", a.find(5) );
return 0;
}

@ -292,7 +292,7 @@
\fn void QPtrDict::statistics() const
Debugging-only function that prints out the dictionary
distribution using qDebug().
distribution using tqDebug().
*/
/*!

@ -453,7 +453,7 @@ retrieve data from it.
\quotefile sql/overview/retrieve1/main.cpp
\skipto if (
\printline if (
\printuntil qDebug
\printuntil tqDebug
\printline
\printline
\printline
@ -644,7 +644,7 @@ setValue() to ensure that the value used is the one we want.
\quotefile sql/overview/extract/main.cpp
\skipto QSqlCursor
\printline QSqlCursor
\printuntil qDebug
\printuntil tqDebug
\printline
\caption From \l sql/overview/extract/main.cpp
@ -668,7 +668,7 @@ in the \c{ORDER BY} clause.
Now we iterate through each matching record (if any). We retrieve the
contents of the id, forename and surname fields and pass them on to
some processing function, in this example a simple qDebug() call.
some processing function, in this example a simple tqDebug() call.
\target Manipulating_Records
\section2 Manipulating Records

@ -916,8 +916,8 @@ have set up the QLCDNumber to always display two digits, we want to
limit the possible range of \c minVal and \c maxVal to 0..99 to avoid
overflow of the QLCDNumber. (We could have allowed values down to -9
but chose not to.) If the arguments are illegal, we use Qt's
qWarning() function to issue a warning to the user and return
immediately. qWarning() is a printf-like function that by default
tqWarning() function to issue a warning to the user and return
immediately. tqWarning() is a printf-like function that by default
sends its output to \c stderr. If you want, you can install your own handler
function using \l ::qInstallMsgHandler().

@ -732,7 +732,7 @@ void Main::addMesh()
#ifndef QT_NO_PROGRESSDIALOG
progress.setProgress( rows );
#endif
// qDebug( "%d nodes, %d edges", nodecount, EdgeItem::count() );
// tqDebug( "%d nodes, %d edges", nodecount, EdgeItem::count() );
}
void Main::addRectangle()

@ -65,7 +65,7 @@ int main( int*, char**)
#endif
*img = img->smoothScale( w/2, h/2 );
qDebug( "saving out.png");
tqDebug( "saving out.png");
img->save( "out.png", "PNG" );
w = img->width();

@ -236,7 +236,7 @@ GLInfo::GLInfo()
dpy = gl.x11Display();
if ( !dpy ) {
qWarning( "Error: unable to open display %s\n", displayName );
tqWarning( "Error: unable to open display %s\n", displayName );
}
numScreens = ScreenCount( dpy );

@ -100,7 +100,7 @@ void GLTexobj::initializeGL()
QImage tex1, tex2, buf;
if ( !buf.load( "opengl/gllogo.bmp" ) ) { // Load first image from file
qWarning( "Could not read image file, using single-color instead." );
tqWarning( "Could not read image file, using single-color instead." );
QImage dummy( 128, 128, 32 );
dummy.fill( Qt::green.rgb() );
buf = dummy;
@ -108,7 +108,7 @@ void GLTexobj::initializeGL()
tex1 = QGLWidget::convertToGLFormat( buf ); // flipped 32bit RGBA
if ( !buf.load( "opengl/qtlogo.bmp" ) ) { // Load first image from file
qWarning( "Could not read image file, using single-color instead." );
tqWarning( "Could not read image file, using single-color instead." );
QImage dummy( 128, 128, 32 );
dummy.fill( Qt::red.rgb() );
buf = dummy;

@ -471,7 +471,7 @@ QtFileIconView::QtFileIconView( const QString &dir, QWidget *parent, const char
: QIconView( parent, name ), viewDir( dir ), newFolderNum( 0 )
{
if ( !iconFolderLockedLarge ) {
qAddPostRoutine( cleanup );
tqAddPostRoutine( cleanup );
QWMatrix m;
m.scale( 0.6, 0.6 );
QPixmap iconpix( folder_locked_icon );

@ -27,18 +27,18 @@ public:
public slots:
void dropped( QDropEvent *mime ) {
qDebug( "Dropped Mimesource %p into the view %p", mime, view );
qDebug( " Formats:" );
tqDebug( "Dropped Mimesource %p into the view %p", mime, view );
tqDebug( " Formats:" );
int i = 0;
const char *str = mime->format( i );
qDebug( " %s", str );
tqDebug( " %s", str );
while ( str ) {
qDebug( " %s", str );
tqDebug( " %s", str );
str = mime->format( ++i );
}
};
void moved() {
qDebug( "All selected items were moved to another widget" );
tqDebug( "All selected items were moved to another widget" );
}
protected:

@ -13,7 +13,7 @@
void usage()
{
qWarning( "Usage: life [-scale scale]" );
tqWarning( "Usage: life [-scale scale]" );
}
int main( int argc, char **argv )

@ -79,7 +79,7 @@ public:
QServerSocket( 4242, 1, parent )
{
if ( !ok() ) {
qWarning("Failed to bind to port 4242");
tqWarning("Failed to bind to port 4242");
exit(1);
}
}

@ -27,7 +27,7 @@ public:
QServerSocket(8080,1,parent)
{
if ( !ok() ) {
qWarning("Failed to bind to port 8080");
tqWarning("Failed to bind to port 8080");
exit( 1 );
}
}

@ -17,7 +17,7 @@ int main( int argc, char **argv )
{
QApplication a( argc, argv );
qInitNetworkProtocols();
tqInitNetworkProtocols();
QNetworkProtocol::registerNetworkProtocol( "nntp", new QNetworkProtocolFactory<Nntp> );
View v;

@ -30,7 +30,7 @@ int main( int argc, char **argv )
QApplication a(argc,argv);
if ( !QGLFormat::hasOpenGL() ) {
qWarning( "This system has no OpenGL support. Exiting." );
tqWarning( "This system has no OpenGL support. Exiting." );
return -1;
}

@ -278,7 +278,7 @@ int main( int argc, char **argv )
QApplication a( argc, argv );
if ( !QGLFormat::hasOpenGL() ) {
qWarning( "This system has no OpenGL support. Exiting." );
tqWarning( "This system has no OpenGL support. Exiting." );
return -1;
}

@ -180,7 +180,7 @@ void GLObjectWindow::drawOnPixmap( QPixmap* pm )
// Draw some text on the pixmap to differentiate it from the GL window
if ( pm->isNull() ) {
qWarning("Cannot draw on null pixmap");
tqWarning("Cannot draw on null pixmap");
return;
}
else {

@ -30,7 +30,7 @@ int main( int argc, char **argv )
QApplication a(argc,argv);
if ( !QGLFormat::hasOpenGL() ) {
qWarning( "This system has no OpenGL support. Exiting." );
tqWarning( "This system has no OpenGL support. Exiting." );
return -1;
}

@ -31,7 +31,7 @@ int main( int argc, char **argv )
QApplication a(argc,argv);
if ( !QGLFormat::hasOpenGL() ) {
qWarning( "This system has no OpenGL support. Exiting." );
tqWarning( "This system has no OpenGL support. Exiting." );
return -1;
}

@ -250,7 +250,7 @@ void GearWidget::resizeGL( int width, int height )
void GearWidget::paintGL()
{
qDebug( "GearWidget: Doing GL rendering." );
tqDebug( "GearWidget: Doing GL rendering." );
#if defined (Q_GLX)
static bool doneIt = FALSE;
if ( !doneIt ) {
@ -259,7 +259,7 @@ void GearWidget::paintGL()
// simpler in future versions of Qt!
XWindowAttributes a;
XGetWindowAttributes( x11Display(), winId(), &a );
qDebug( "QGLWidget: using Visual ID: 0x%x.",
tqDebug( "QGLWidget: using Visual ID: 0x%x.",
(int)XVisualIDFromVisual( a.visual ) );
}
#endif

@ -36,7 +36,7 @@ QColor findOverlayTransparentColor()
appVisual = (Visual*)QPaintDevice::x11AppVisual();
#endif
qDebug( "Default Visual ID: 0x%x", (int)XVisualIDFromVisual(appVisual) );
tqDebug( "Default Visual ID: 0x%x", (int)XVisualIDFromVisual(appVisual) );
typedef struct OverlayProp {
long visual;
@ -80,11 +80,11 @@ QColor findOverlayTransparentColor()
return QColor( qRgb( 1, 2, 3 ), overlayProp[i].value );
}
qWarning( "Default visual is not in overlay plane" );
tqWarning( "Default visual is not in overlay plane" );
return invalidColor;
#else // defined(Q_WS_X11)
qWarning( "Wrong window system - Only X11 has overlay support." );
tqWarning( "Wrong window system - Only X11 has overlay support." );
return invalidColor;
#endif
}
@ -96,13 +96,13 @@ int main( int argc, char **argv )
QApplication a( argc, argv );
if ( !QGLFormat::hasOpenGL() ) {
qWarning( "This system has no OpenGL support. Exiting." );
tqWarning( "This system has no OpenGL support. Exiting." );
return -1;
}
QColor transparentColor = findOverlayTransparentColor();
if ( !transparentColor.isValid() ) {
qWarning( "Failed to get transparent color for overlay. Exiting." );
tqWarning( "Failed to get transparent color for overlay. Exiting." );
return -1;
}

@ -57,18 +57,18 @@ void GLBox::initializeGL()
sharedDisplayList = makeObject(); // Make one
object = sharedDisplayList; // Use it
sharedListUsers++; // Keep reference count
qDebug( "GLBox %s created shared display list.", name() );
tqDebug( "GLBox %s created shared display list.", name() );
}
else { // There is a shared diplay list
if ( isSharing() ) { // Can we access it?
object = sharedDisplayList; // Yes, use it
sharedListUsers++; // Keep reference count
qDebug( "GLBox %s uses shared display list.", name() );
tqDebug( "GLBox %s uses shared display list.", name() );
}
else {
localDisplayList = makeObject(); // No, roll our own
object = localDisplayList; // and use that
qDebug( "GLBox %s uses private display list.", name() );
tqDebug( "GLBox %s uses private display list.", name() );
}
}
}
@ -84,14 +84,14 @@ GLBox::~GLBox()
makeCurrent(); // We're going to do gl calls
if ( localDisplayList != 0 ) { // Did we make our own?
glDeleteLists( localDisplayList, 1 ); // Yes, delete it
qDebug( "GLBox %s deleted private display list.", name() );
tqDebug( "GLBox %s deleted private display list.", name() );
}
else {
sharedListUsers--; // No, we used the shared one; keep refcount
if ( sharedListUsers == 0 ) { // Any sharers left?
glDeleteLists( sharedDisplayList, 1 ); // No, delete it
sharedDisplayList = 0;
qDebug( "GLBox %s deleted shared display list.", name() );
tqDebug( "GLBox %s deleted shared display list.", name() );
}
}
}

@ -30,7 +30,7 @@ int main( int argc, char **argv )
QApplication a(argc,argv);
if ( !QGLFormat::hasOpenGL() ) {
qWarning( "This system has no OpenGL support. Exiting." );
tqWarning( "This system has no OpenGL support. Exiting." );
return -1;
}

@ -109,7 +109,7 @@ void GLTexobj::initializeGL()
QImage tex1, tex2, buf;
if ( !buf.load( "gllogo.bmp" ) ) { // Load first image from file
qWarning( "Could not read image file, using single-color instead." );
tqWarning( "Could not read image file, using single-color instead." );
QImage dummy( 128, 128, 32 );
dummy.fill( Qt::green.rgb() );
buf = dummy;
@ -117,7 +117,7 @@ void GLTexobj::initializeGL()
tex1 = QGLWidget::convertToGLFormat( buf ); // flipped 32bit RGBA
if ( !buf.load( "qtlogo.bmp" ) ) { // Load first image from file
qWarning( "Could not read image file, using single-color instead." );
tqWarning( "Could not read image file, using single-color instead." );
QImage dummy( 128, 128, 32 );
dummy.fill( Qt::red.rgb() );
buf = dummy;

@ -28,7 +28,7 @@ int main( int argc, char **argv )
QApplication a(argc,argv);
if ( !QGLFormat::hasOpenGL() ) {
qWarning( "This system has no OpenGL support. Exiting." );
tqWarning( "This system has no OpenGL support. Exiting." );
return -1;
}

@ -272,7 +272,7 @@ private:
{
if ( timer_driven ) {
if ( pb ) {
qWarning("This cannot happen!");
tqWarning("This cannot happen!");
return;
}
rects = n;

@ -307,7 +307,7 @@ int main( int argc, char ** argv )
else if ( arg == "-custom" )
custom = TRUE;
else if ( arg[0] == '-' ) {
qDebug("Usage: qdir [-any | -dir | -custom] [-preview] [-default f] {-filter f} [caption ...]\n"
tqDebug("Usage: qdir [-any | -dir | -custom] [-preview] [-default f] {-filter f} [caption ...]\n"
" -any Get any filename, need not exist.\n"
" -dir Return a directory rather than a file.\n"
" -custom Opens a customized QFileDialog with \n"

@ -29,52 +29,52 @@ int main( int argc, char ** argv )
db->setPassword( PASSWORD );
db->setHostName( HOST );
if ( !db->open() ) {
qWarning( db->lastError().databaseText() );
tqWarning( db->lastError().databaseText() );
return 1;
}
if ( argc < 2 ) {
qWarning( "Usage: %s <filename>", argv[0] );
tqWarning( "Usage: %s <filename>", argv[0] );
return 1;
}
// read a file which we want to insert into the database
QFile f( argv[1] );
if ( !f.open( IO_ReadOnly ) ) {
qWarning( "Unable to open data file '%s' - exiting", argv[1] );
tqWarning( "Unable to open data file '%s' - exiting", argv[1] );
return 1;
}
QByteArray binaryData = f.readAll();
qWarning( "Data size: %d", binaryData.size() );
tqWarning( "Data size: %d", binaryData.size() );
// create a table with a binary field
QSqlQuery q;
if ( !q.exec( "CREATE TABLE blobexample ( id INT PRIMARY KEY, binfield LONGBLOB )" ) ) {
qWarning( "Unable to create table - exiting" );
tqWarning( "Unable to create table - exiting" );
return 1;
}
// insert a BLOB into the table
if ( !q.prepare( "INSERT INTO blobexample ( id, binfield ) VALUES ( ?, ? )" ) ) {
qWarning( "Unable to prepare query - exiting" );
tqWarning( "Unable to prepare query - exiting" );
return 1;
}
q.bindValue( 0, 1 );
q.bindValue( 1, binaryData );
if ( !q.exec() ) {
qWarning( "Unable to execute prepared query - exiting" );
tqWarning( "Unable to execute prepared query - exiting" );
return 1;
}
// read the BLOB back from the database
if ( !q.exec( "SELECT id, binfield FROM blobexample" ) ) {
qWarning( "Unable to execute query - exiting" );
tqWarning( "Unable to execute query - exiting" );
return 1;
}
qWarning( "\nQSqlQuery:" );
tqWarning( "\nQSqlQuery:" );
while ( q.next() ) {
qWarning( "BLOB id: %d", q.value( 0 ).toInt() );
qWarning( "BLOB size: %d", q.value( 1 ).toByteArray().size() );
tqWarning( "BLOB id: %d", q.value( 0 ).toInt() );
tqWarning( "BLOB size: %d", q.value( 1 ).toByteArray().size() );
}
// write another BLOB using QSqlCursor
@ -83,23 +83,23 @@ int main( int argc, char ** argv )
r->setValue( "id", 2 );
r->setValue( "binfield", binaryData );
if ( !cur.insert() ) {
qWarning( "Unable to insert BLOB using QSqlCursor - exiting" );
tqWarning( "Unable to insert BLOB using QSqlCursor - exiting" );
return 1;
}
// read the BLOBs back using QSqlCursor
if ( !cur.select() ) {
qWarning( "Unable retrieve blobexample table using QSqlCursor - exiting" );
tqWarning( "Unable retrieve blobexample table using QSqlCursor - exiting" );
return 1;
}
qWarning( "\nQSqlCursor:" );
tqWarning( "\nQSqlCursor:" );
while ( cur.next() ) {
qWarning( "BLOB id: %d", cur.value( "id" ).toInt() );
qWarning( "BLOB size: %d", cur.value( "binfield" ).toByteArray().size() );
tqWarning( "BLOB id: %d", cur.value( "id" ).toInt() );
tqWarning( "BLOB size: %d", cur.value( "binfield" ).toByteArray().size() );
}
if ( !q.exec( "DROP TABLE blobexample" ) ) {
qWarning( "Unable to drop table - exiting" );
tqWarning( "Unable to drop table - exiting" );
return 1;
}
return 0;

@ -18,7 +18,7 @@ bool createConnections()
defaultDB->setPassword( DB_SALES_PASSWD );
defaultDB->setHostName( DB_SALES_HOST );
if ( ! defaultDB->open() ) {
qWarning( "Failed to open sales database: " + defaultDB->lastError().text() );
tqWarning( "Failed to open sales database: " + defaultDB->lastError().text() );
return FALSE;
}
@ -28,7 +28,7 @@ bool createConnections()
oracle->setPassword( DB_ORDERS_PASSWD );
oracle->setHostName( DB_ORDERS_HOST );
if ( ! oracle->open() ) {
qWarning( "Failed to open orders database: " + oracle->lastError().text() );
tqWarning( "Failed to open orders database: " + oracle->lastError().text() );
return FALSE;
}

@ -33,7 +33,7 @@ int main( int argc, char *argv[] )
int id = cur.value( "id" ).toInt();
QString name = cur.value( "forename" ).toString() + " " +
cur.value( "surname" ).toString();
qDebug( QString::number( id ) + ": " + name );
tqDebug( QString::number( id ) + ": " + name );
}
}

@ -22,7 +22,7 @@ int main( int argc, char *argv[] )
QSqlIndex order = cur.index( fields );
cur.select( order );
while ( cur.next() ) {
qDebug( cur.value( "id" ).toString() + ": " +
tqDebug( cur.value( "id" ).toString() + ": " +
cur.value( "surname" ).toString() + " " +
cur.value( "forename" ).toString() );
}

@ -24,7 +24,7 @@ int main( int argc, char *argv[] )
cur.setValue( "surname", "Bloggs" );
cur.select( filter, order );
while ( cur.next() ) {
qDebug( cur.value( "id" ).toString() + ": " +
tqDebug( cur.value( "id" ).toString() + ": " +
cur.value( "surname" ).toString() + " " +
cur.value( "forename" ).toString() );
}

@ -20,7 +20,7 @@ int main( int argc, char *argv[] )
QSqlQuery query( "SELECT id, surname FROM staff" );
if ( query.isActive() ) {
while ( query.next() ) {
qDebug( query.value(0).toString() + ": " +
tqDebug( query.value(0).toString() + ": " +
query.value(1).toString() );
}
}

@ -20,7 +20,7 @@ int main( int argc, char *argv[] )
QSqlCursor cur( "staff" ); // Specify the table/view name
cur.select(); // We'll retrieve every record
while ( cur.next() ) {
qDebug( cur.value( "id" ).toString() + ": " +
tqDebug( cur.value( "id" ).toString() + ": " +
cur.value( "surname" ).toString() + " " +
cur.value( "salary" ).toString() );
}

@ -89,11 +89,11 @@ void StatsCanvas::tabletEvent( QTabletEvent *e )
e->accept();
switch( e->type() ) {
case QEvent::TabletPress:
qDebug( "Tablet Press" );
tqDebug( "Tablet Press" );
mousePressed = TRUE;
break;
case QEvent::TabletRelease:
qDebug( "Tablet Release" );
tqDebug( "Tablet Release" );
mousePressed = FALSE;
clearScreen();
break;
@ -115,7 +115,7 @@ void StatsCanvas::tabletEvent( QTabletEvent *e )
void StatsCanvas::mouseMoveEvent( QMouseEvent *e )
{
qDebug( "Mouse Move" );
tqDebug( "Mouse Move" );
// do nothing
QWidget::mouseMoveEvent( e );
}
@ -123,13 +123,13 @@ void StatsCanvas::mouseMoveEvent( QMouseEvent *e )
void StatsCanvas::mousePressEvent( QMouseEvent *e )
{
qDebug( "Mouse Press" );
tqDebug( "Mouse Press" );
QWidget::mousePressEvent( e );
}
void StatsCanvas::mouseReleaseEvent( QMouseEvent *e )
{
qDebug( "Mouse Release" );
tqDebug( "Mouse Release" );
QWidget::mouseReleaseEvent( e );
}

@ -255,7 +255,7 @@ void SemaphoreExample::customEvent(QCustomEvent *event) {
default:
{
qWarning("Unknown custom event type: %d", event->type());
tqWarning("Unknown custom event type: %d", event->type());
}
}
}

@ -19,7 +19,7 @@ int main( int argc, char **argv )
if ( argc == 2 ) // get board size n
n = atoi(argv[1]);
if ( n < 3 || n > 10 ) { // out of range
qWarning( "%s: Board size must be from 3x3 to 10x10", argv[0] );
tqWarning( "%s: Board size must be from 3x3 to 10x10", argv[0] );
return 1;
}
TicTacToe ttt( n ); // create game

@ -714,21 +714,21 @@ void WidgetView::dummy()
void WidgetView::selectionChanged()
{
//qDebug("selectionChanged");
//tqDebug("selectionChanged");
}
void WidgetView::selectionChanged( QListViewItem* /*item*/)
{
//qDebug("selectionChanged %p", item );
//tqDebug("selectionChanged %p", item );
}
void WidgetView::clicked( QListViewItem* /*item*/ )
{
//qDebug("clicked %p", item );
//tqDebug("clicked %p", item );
}
void WidgetView::mySelectionChanged( QListViewItem* /*item*/ )
{
//qDebug("mySelectionChanged %p", item );
//tqDebug("mySelectionChanged %p", item );
}
void WidgetView::showProperties()
@ -747,5 +747,5 @@ void WidgetView::showProperties()
p->writable() ? "write" : "only", p->type() );
output += tmp;
}
qDebug( output );
tqDebug( output );
}

@ -159,7 +159,7 @@ void Graph::timerEvent(QTimerEvent*)
void Graph::setStyle(const char* stext)
{
for ( Style s = Pie; styleName[s]; s = Style(s+1) ) {
if ( qstricmp(stext,styleName[s])==0 ) {
if ( tqstricmp(stext,styleName[s])==0 ) {
setStyle(s);
return;
}

@ -800,7 +800,7 @@ QNPWidget::QNPWidget() :
pi(next_pi)
{
if (!next_pi) {
qFatal("QNPWidget must only be created within call to newWindow");
tqFatal("QNPWidget must only be created within call to newWindow");
}
next_pi->widget = this;
next_pi = 0;
@ -942,7 +942,7 @@ QNPInstance::QNPInstance() :
pi(next_pi)
{
if (!next_pi) {
qFatal("QNPInstance must only be created within call to newInstance");
tqFatal("QNPInstance must only be created within call to newInstance");
}
next_pi->instance = this;
next_pi = 0;
@ -1207,7 +1207,7 @@ const char* QNPInstance::arg(const char* name) const
{
for (int i=0; i<pi->argc; i++) {
// SGML: names are case insensitive
if ( qstricmp( name, pi->argn[i] ) == 0 ) {
if ( tqstricmp( name, pi->argn[i] ) == 0 ) {
if (pi->argv[i].isEmpty())
return "";
else
@ -1558,7 +1558,7 @@ void* QNPlugin::getJavaClass()
*/
void QNPlugin::unuseJavaClass()
{
qFatal("QNPlugin::unuseJavaClass() must be overridden along with getJavaClass()");
tqFatal("QNPlugin::unuseJavaClass() must be overridden along with getJavaClass()");
}
/*!
@ -1625,7 +1625,7 @@ bool QNPXt::redeliverEvent( XEvent *event )
{
// redeliver the event to Xt, NOT through Qt
if ( static_d->dispatchers[ event->type ]( event ) ) {
// qDebug( "Xt: redelivered event" );
// tqDebug( "Xt: redelivered event" );
return TRUE;
}
return FALSE;
@ -1709,11 +1709,11 @@ Boolean qnpxt_event_dispatcher( XEvent *event )
if ( w ) {
if ( !grabbed && ( event->type == XFocusIn &&
event->xfocus.mode == NotifyGrab ) ) {
// qDebug( "Xt: grab started" );
// tqDebug( "Xt: grab started" );
grabbed = TRUE;
} else if ( grabbed && ( event->type == XFocusOut &&
event->xfocus.mode == NotifyUngrab ) ) {
// qDebug( "Xt: grab ended" );
// tqDebug( "Xt: grab ended" );
grabbed = FALSE;
}
}
@ -1760,7 +1760,7 @@ Boolean qnpxt_event_dispatcher( XEvent *event )
qnpxt_keep_alive();
if ( delivered ) {
// qDebug( "Qt: delivered event" );
// tqDebug( "Qt: delivered event" );
return True;
}
@ -1775,7 +1775,7 @@ Boolean qnpxt_event_dispatcher( XEvent *event )
case EnterNotify:
case LeaveNotify:
case ClientMessage:
// qDebug( "Qt: active popup - discarding event" );
// tqDebug( "Qt: active popup - discarding event" );
return True;
default:
@ -1787,7 +1787,7 @@ Boolean qnpxt_event_dispatcher( XEvent *event )
if ( qnpxt ) {
// send event through Qt modality handling...
if ( !qt_try_modal( qnpxt, event ) ) {
// qDebug( "Qt: active modal widget discarded event" );
// tqDebug( "Qt: active modal widget discarded event" );
return True;
}
} else if ( !grabbed ) {
@ -1814,7 +1814,7 @@ Boolean qnpxt_event_dispatcher( XEvent *event )
case EnterNotify:
case LeaveNotify:
case ClientMessage:
// qDebug( "Qt: active modal widget discarded unknown event" );
// tqDebug( "Qt: active modal widget discarded unknown event" );
return True;
default:
break;
@ -1824,7 +1824,7 @@ Boolean qnpxt_event_dispatcher( XEvent *event )
}
if ( static_d->dispatchers[ event->type ]( event ) ) {
// qDebug( "Xt: delivered event" );
// tqDebug( "Xt: delivered event" );
// Xt handled the event.
return True;
}
@ -1839,7 +1839,7 @@ QNPXt::QNPXt( const char *applicationClass, XtAppContext context,
{
#if defined(QT_CHECK_STATE)
if ( static_d )
qWarning( "QNPXt: should only have one QNPXt instance!" );
tqWarning( "QNPXt: should only have one QNPXt instance!" );
#endif
d = static_d = new QNPXtPrivate;
@ -1966,7 +1966,7 @@ void QNPXt::registerSocketNotifier( QSocketNotifier *notifier )
break;
default:
qWarning( "QNPXtEventLoop: socket notifier has invalid type" );
tqWarning( "QNPXtEventLoop: socket notifier has invalid type" );
return;
}
@ -1985,7 +1985,7 @@ void QNPXt::unregisterSocketNotifier( QSocketNotifier *notifier )
++it;
if ( ! it.current() ) {
// this shouldn't happen
qWarning( "QNPXtEventLoop: failed to unregister socket notifier" );
tqWarning( "QNPXtEventLoop: failed to unregister socket notifier" );
return;
}

@ -164,7 +164,7 @@ QRect QAccessibleWidget::rect( int control ) const
{
#if defined(QT_DEBUG)
if ( control )
qWarning( "QAccessibleWidget::rect: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() );
tqWarning( "QAccessibleWidget::rect: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() );
#else
Q_UNUSED(control)
#endif
@ -179,7 +179,7 @@ int QAccessibleWidget::navigate( NavDirection dir, int startControl ) const
{
#if defined(QT_DEBUG)
if ( startControl )
qWarning( "QAccessibleWidget::navigate: This implementation does not support subelements! (ID %d unknown for %s)", startControl, widget()->className() );
tqWarning( "QAccessibleWidget::navigate: This implementation does not support subelements! (ID %d unknown for %s)", startControl, widget()->className() );
#else
Q_UNUSED(startControl);
#endif
@ -249,7 +249,7 @@ int QAccessibleWidget::navigate( NavDirection dir, int startControl ) const
return ( index != -1 ) ? index+1 : -1;
}
default:
qWarning( "QAccessibleWidget::navigate: unhandled request" );
tqWarning( "QAccessibleWidget::navigate: unhandled request" );
break;
};
return -1;
@ -297,7 +297,7 @@ bool QAccessibleWidget::doDefaultAction( int control )
{
#if defined(QT_DEBUG)
if ( control )
qWarning( "QAccessibleWidget::doDefaultAction: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() );
tqWarning( "QAccessibleWidget::doDefaultAction: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() );
#else
Q_UNUSED(control)
#endif
@ -407,7 +407,7 @@ bool QAccessibleWidget::setFocus( int control )
{
#if defined(QT_DEBUG)
if ( control )
qWarning( "QAccessibleWidget::setFocus: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() );
tqWarning( "QAccessibleWidget::setFocus: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() );
#else
Q_UNUSED(control)
#endif
@ -422,7 +422,7 @@ bool QAccessibleWidget::setFocus( int control )
bool QAccessibleWidget::setSelected( int, bool, bool )
{
#if defined(QT_DEBUG)
qWarning( "QAccessibleWidget::setSelected: This function not supported for simple widgets." );
tqWarning( "QAccessibleWidget::setSelected: This function not supported for simple widgets." );
#endif
return FALSE;
}
@ -431,7 +431,7 @@ bool QAccessibleWidget::setSelected( int, bool, bool )
void QAccessibleWidget::clearSelection()
{
#if defined(QT_DEBUG)
qWarning( "QAccessibleWidget::clearSelection: This function not supported for simple widgets." );
tqWarning( "QAccessibleWidget::clearSelection: This function not supported for simple widgets." );
#endif
}

@ -306,7 +306,7 @@ void QMultiInputContext::changeInputMethod( QString key )
currentIMKey = key;
//qDebug( "QMultiInputContext::changeInputMethod(): index=%d, slave=%s",
//tqDebug( "QMultiInputContext::changeInputMethod(): index=%d, slave=%s",
// imIndex, (const char *)_slave->identifierName() );
}
}

@ -141,7 +141,7 @@ bool QSimpleInputContext::filterEvent( const QEvent *event )
// only one character. See description of
// QInputContext::filterEvent() about key compression.
val = text[0].unicode();
// qDebug( "str = %s", (const char*)keyevent->text().local8Bit() );
// tqDebug( "str = %s", (const char*)keyevent->text().local8Bit() );
}
// Store value
@ -165,13 +165,13 @@ bool QSimpleInputContext::filterEvent( const QEvent *event )
void QSimpleInputContext::setFocus()
{
//qDebug( "QSimpleInputContext: %p->setFocus(), focusWidget()=%p",
//tqDebug( "QSimpleInputContext: %p->setFocus(), focusWidget()=%p",
//this, focusWidget() );
}
void QSimpleInputContext::unsetFocus()
{
//qDebug( "QSimpleInputContext: %p->unsetFocus(), focusWidget()=%p",
//tqDebug( "QSimpleInputContext: %p->unsetFocus(), focusWidget()=%p",
//this, focusWidget() );
reset();
}
@ -189,7 +189,7 @@ void QSimpleInputContext::mouseHandler( int x, QEvent::Type type,
case QEvent::MouseButtonRelease:
case QEvent::MouseButtonDblClick:
case QEvent::MouseMove:
// qDebug( "QSimpleInputContext::mouseHandler: "
// tqDebug( "QSimpleInputContext::mouseHandler: "
// "x=%d, type=%d, button=%d, state=%d", x, type, button, state );
break;
default:
@ -241,7 +241,7 @@ bool QSimpleInputContext::checkComposeTable( uint* composeBuffer, const QCompose
// no entries were found
if ( p == composeTable->data + composeTable->size ) {
// qDebug( "no match" );
// tqDebug( "no match" );
clearComposeBuffer();
return FALSE;
}
@ -251,18 +251,18 @@ bool QSimpleInputContext::checkComposeTable( uint* composeBuffer, const QCompose
// check if partial match
if ( composeBuffer[i] == 0 && p->keys[i] ) {
// qDebug("partial match");
// tqDebug("partial match");
return TRUE;
}
if ( composeBuffer[i] != p->keys[i] ) {
// qDebug("different entry");
// tqDebug("different entry");
clearComposeBuffer();
return i!=0;
}
}
// qDebug("match exactly");
// tqDebug("match exactly");
// match exactly
commitChar( p->value );

@ -86,7 +86,7 @@ extern "C" {
XPointer /*client_data*/,
XPointer /*call_data*/)
{
// qDebug("xim_create_callback");
// tqDebug("xim_create_callback");
QXIMInputContext::create_xim();
}
@ -94,7 +94,7 @@ extern "C" {
XPointer /*client_data*/,
XPointer /*call_data*/)
{
// qDebug("xim_destroy_callback");
// tqDebug("xim_destroy_callback");
QXIMInputContext::close_xim();
Display *dpy = QPaintDevice::x11AppDisplay();
XRegisterIMInstantiateCallback(dpy, 0, 0, 0,
@ -170,7 +170,7 @@ extern "C" {
QXIMInputContext *qic = (QXIMInputContext *) client_data;
if (! qic) {
#ifdef QT_XIM_DEBUG
qDebug("compose start: no qic");
tqDebug("compose start: no qic");
#endif // QT_XIM_DEBUG
return 0;
@ -180,7 +180,7 @@ extern "C" {
qic->sendIMEvent( QEvent::IMStart );
#ifdef QT_XIM_DEBUG
qDebug("compose start");
tqDebug("compose start");
#endif // QT_XIM_DEBUG
return 0;
@ -190,7 +190,7 @@ extern "C" {
QXIMInputContext *qic = (QXIMInputContext *) client_data;
if (! qic) {
#ifdef QT_XIM_DEBUG
qDebug("compose event: invalid compose event %p", qic);
tqDebug("compose event: invalid compose event %p", qic);
#endif // QT_XIM_DEBUG
return 0;
@ -202,7 +202,7 @@ extern "C" {
send_imstart = TRUE;
} else if ( ! qic->isComposing() || ! qic->hasFocus() ) {
#ifdef QT_XIM_DEBUG
qDebug( "compose event: invalid compose event composing=%d hasFocus=%d",
tqDebug( "compose event: invalid compose event composing=%d hasFocus=%d",
qic->isComposing(), qic->hasFocus() );
#endif // QT_XIM_DEBUG
@ -221,7 +221,7 @@ extern "C" {
! drawstruct->chg_length && ! text ) {
if( qic->composingText.isEmpty() ) {
#ifdef QT_XIM_DEBUG
qDebug( "compose emptied" );
tqDebug( "compose emptied" );
#endif // QT_XIM_DEBUG
// if the composition string has been emptied, we need
// to send an IMEnd event
@ -296,7 +296,7 @@ extern "C" {
bool qt_compose_emptied = qic->composingText.isEmpty();
if ( qt_compose_emptied ) {
#ifdef QT_XIM_DEBUG
qDebug( "compose emptied" );
tqDebug( "compose emptied" );
#endif // QT_XIM_DEBUG
// if the composition string has been emptied, we need
// to send an IMEnd event
@ -356,12 +356,12 @@ void QXIMInputContext::setHolderWidget( QWidget *widget )
#if !defined(QT_NO_XIM)
fontsetRefCount++;
if (! qt_xim) {
qWarning("QInputContext: no input method context available");
tqWarning("QInputContext: no input method context available");
return;
}
if (! widget->isTopLevel()) {
// qWarning("QInputContext: cannot create input context for non-toplevel widgets");
// tqWarning("QInputContext: cannot create input context for non-toplevel widgets");
return;
}
@ -420,7 +420,7 @@ void QXIMInputContext::setHolderWidget( QWidget *widget )
(char *) 0);
if (! ic)
qFatal("Failed to create XIM input context!");
tqFatal("Failed to create XIM input context!");
// when resetting the input context, preserve the input state
(void) XSetICValues((XIC) ic, XNResetState, XIMPreserveState, (char *) 0);
@ -483,11 +483,11 @@ void QXIMInputContext::init_xim()
ximServerName = "";
if ( !XSupportsLocale() )
qWarning("Qt: Locales not supported on X server");
tqWarning("Qt: Locales not supported on X server");
#ifdef USE_X11R6_XIM
else if ( XSetLocaleModifiers (ximServerName.ascii()) == 0 )
qWarning( "Qt: Cannot set locale modifiers: %s",
tqWarning( "Qt: Cannot set locale modifiers: %s",
ximServerName.ascii());
else {
Display *dpy = QPaintDevice::x11AppDisplay();
@ -499,7 +499,7 @@ void QXIMInputContext::init_xim()
}
#else // !USE_X11R6_XIM
else if ( XSetLocaleModifiers ("") == 0 )
qWarning("Qt: Cannot set locale modifiers");
tqWarning("Qt: Cannot set locale modifiers");
else
QXIMInputContext::create_xim();
#endif // USE_X11R6_XIM
@ -522,7 +522,7 @@ void QXIMInputContext::create_xim()
destroy.callback = (XIMProc) xim_destroy_callback;
destroy.client_data = 0;
if ( XSetIMValues( qt_xim, XNDestroyCallback, &destroy, (char *) 0 ) != 0 )
qWarning( "Xlib doesn't support destroy callback");
tqWarning( "Xlib doesn't support destroy callback");
#endif // USE_X11R6_XIM
XIMStyles *styles = 0;
@ -553,7 +553,7 @@ void QXIMInputContext::create_xim()
}
}
// qDebug("QApplication: using im style %lx", qt_xim_style);
// tqDebug("QApplication: using im style %lx", qt_xim_style);
XFree( (char *)styles );
}
@ -566,7 +566,7 @@ void QXIMInputContext::create_xim()
} else {
// Give up
qWarning( "No supported input style found."
tqWarning( "No supported input style found."
" See InputMethod documentation.");
QXIMInputContext::close_xim();
}
@ -714,7 +714,7 @@ void QXIMInputContext::reset()
#if !defined(QT_NO_XIM)
if ( focusWidget() && isComposing() && ! composingText.isNull() ) {
#ifdef QT_XIM_DEBUG
qDebug("QXIMInputContext::reset: composing - sending IMEnd (empty) to %p",
tqDebug("QXIMInputContext::reset: composing - sending IMEnd (empty) to %p",
focusWidget() );
#endif // QT_XIM_DEBUG
@ -742,7 +742,7 @@ void QXIMInputContext::resetClientState()
void QXIMInputContext::close( const QString &errMsg )
{
qDebug( errMsg );
tqDebug( errMsg );
emit deletionRequested();
}

@ -193,7 +193,7 @@ processing.
\section1 Checking for more than one condition
Suppose you use Windows and you want to be able to see the qDebug()
Suppose you use Windows and you want to be able to see the tqDebug()
statements when you run your application on the command line. Unless
you build your application with the console setting, you won't see the
output. We can easily put \e console on the CONFIG line so that on

@ -10,5 +10,5 @@ MyObject::MyObject()
MyObject::~MyObject()
{
qDebug("MyObject::~MyObject()");
tqDebug("MyObject::~MyObject()");
}

@ -3,5 +3,5 @@
MyPushButton::MyPushButton( const QString& text )
: QPushButton( text, 0, "mypushbutton" )
{
qDebug( "My PushButton has been constructed" );
tqDebug( "My PushButton has been constructed" );
}

@ -70,7 +70,7 @@ MetrowerksMakefileGenerator::writeMakefile(QTextStream &t)
}
else if(project->first("TEMPLATE") == "subdirs") {
writeHeader(t);
qDebug("Not supported!");
tqDebug("Not supported!");
return TRUE;
}
return FALSE;
@ -641,9 +641,9 @@ MetrowerksMakefileGenerator::createFork(const QString &f)
if(FSGetCatalogInfo(&fref, kFSCatInfoNone, NULL, NULL, &fileSpec, NULL) == noErr)
FSpCreateResFile(&fileSpec, 'CUTE', 'TEXT', smSystemScript);
else
qDebug("bogus %d", __LINE__);
tqDebug("bogus %d", __LINE__);
} else
qDebug("bogus %d", __LINE__);
tqDebug("bogus %d", __LINE__);
fclose(o);
if(perms)
chmod(f.latin1(), perms);

@ -1511,7 +1511,7 @@ UnixMakefileGenerator::pkgConfigPrefix() const
{
if(!project->isEmpty("QMAKE_PKGCONFIG_PREFIX"))
return project->first("QMAKE_PKGCONFIG_PREFIX");
return qInstallPath();
return tqInstallPath();
}
QString

@ -481,15 +481,15 @@ bool VCCLCompilerTool::parseOption( const char* option )
switch ( first ) {
case '?':
case 'h':
qWarning( "Generator: Option '/?', '/help': MSVC.NET projects do not support outputting help info" );
tqWarning( "Generator: Option '/?', '/help': MSVC.NET projects do not support outputting help info" );
found = FALSE;
break;
case '@':
qWarning( "Generator: Option '/@': MSVC.NET projects do not support the use of a response file" );
tqWarning( "Generator: Option '/@': MSVC.NET projects do not support the use of a response file" );
found = FALSE;
break;
case 'l':
qWarning( "Generator: Option '/link': qmake generator does not support passing link options through the compiler tool" );
tqWarning( "Generator: Option '/link': qmake generator does not support passing link options through the compiler tool" );
found = FALSE;
break;
case 'A':
@ -585,7 +585,7 @@ bool VCCLCompilerTool::parseOption( const char* option )
switch ( second ) {
case '3':
case '4':
qWarning( "Option '/G3' and '/G4' were phased out in Visual C++ 5.0" );
tqWarning( "Option '/G3' and '/G4' were phased out in Visual C++ 5.0" );
found = FALSE; break;
case '5':
OptimizeForProcessor = procOptimizePentium;
@ -773,7 +773,7 @@ bool VCCLCompilerTool::parseOption( const char* option )
} else if ( second == 'P' ) {
CompileAs = compileAsCPlusPlus;
} else {
qWarning( "Generator: Options '/Tp<filename>' and '/Tc<filename>' are not supported by qmake" );
tqWarning( "Generator: Options '/Tp<filename>' and '/Tc<filename>' are not supported by qmake" );
found = FALSE; break;
}
break;

@ -395,7 +395,7 @@ void VcprojGenerator::writeSubDirs(QTextStream &t)
}
}
#ifdef DEBUG_SOLUTION_GEN
qDebug( "Deps for %20s: [%s]", newDep->target.latin1(), newDep->dependencies.join(" :: " ).latin1() );
tqDebug( "Deps for %20s: [%s]", newDep->target.latin1(), newDep->dependencies.join(" :: " ).latin1() );
#endif
solution_cleanup.append(newDep);
solution_depends.insert(newDep->target, newDep);
@ -1533,9 +1533,9 @@ void VcprojGenerator::processPrlVariable(const QString &var, const QStringList &
void VcprojGenerator::outputVariables()
{
#if 0
qDebug( "Generator: MSVC.NET: List of current variables:" );
tqDebug( "Generator: MSVC.NET: List of current variables:" );
for ( QMap<QString, QStringList>::ConstIterator it = project->variables().begin(); it != project->variables().end(); ++it) {
qDebug( "Generator: MSVC.NET: %s => %s", it.key().latin1(), it.data().join(" | ").latin1() );
tqDebug( "Generator: MSVC.NET: %s => %s", it.key().latin1(), it.data().join(" | ").latin1() );
}
#endif
}

@ -90,19 +90,19 @@ QStringList qmake_mkspec_paths()
ret << (QT_INSTALL_PREFIX + concat);
#endif
#if defined(HAVE_QCONFIG_CPP)
ret << (qInstallPath() + concat);
ret << (tqInstallPath() + concat);
#endif
#ifdef QT_INSTALL_DATA
ret << (QT_INSTALL_DATA + concat);
#endif
#if defined(HAVE_QCONFIG_CPP)
ret << (qInstallPathData() + concat);
ret << (tqInstallPathData() + concat);
#endif
/* prefer $QTDIR if it is set */
if (getenv("QTDIR"))
ret << getenv("QTDIR");
ret << qInstallPathData();
ret << tqInstallPathData();
return ret;
}
@ -931,13 +931,13 @@ QMakeProject::doProjectTest(const QString& func, QStringList args, QMap<QString,
feature_roots << (QT_INSTALL_PREFIX + concat);
#endif
#if defined(HAVE_QCONFIG_CPP)
feature_roots << (qInstallPath() + concat);
feature_roots << (tqInstallPath() + concat);
#endif
#ifdef QT_INSTALL_DATA
feature_roots << (QT_INSTALL_DATA + concat);
#endif
#if defined(HAVE_QCONFIG_CPP)
feature_roots << (qInstallPathData() + concat);
feature_roots << (tqInstallPathData() + concat);
#endif
for(QStringList::Iterator it = feature_roots.begin(); it != feature_roots.end(); ++it) {
QString prf = (*it) + QDir::separator() + file;

@ -82,13 +82,13 @@ QMakeProperty::value(QString v, bool just_check)
#ifdef QT_INSTALL_PREFIX
return QT_INSTALL_PREFIX;
#elif defined(HAVE_QCONFIG_CPP)
return qInstallPath();
return tqInstallPath();
#endif
} else if(v == "QT_INSTALL_DATA") {
#ifdef QT_INSTALL_DATA
return QT_INSTALL_DATA;
#elif defined(HAVE_QCONFIG_CPP)
return qInstallPathData();
return tqInstallPathData();
#endif
} else if(v == "QMAKE_MKSPECS") {
return qmake_mkspec_paths().join(Option::target_mode == Option::TARG_WIN_MODE ? ";" : ":");

@ -725,7 +725,7 @@ static void cleanupMLBuffer()
static QPixmap *getCacheBuffer( QSize sz )
{
if ( !buffer ) {
qAddPostRoutine( cleanupMLBuffer );
tqAddPostRoutine( cleanupMLBuffer );
buffer = new QPixmap;
}
@ -744,7 +744,7 @@ void QtMultiLineEdit::paintCell( QPainter *painter, int row, int )
QFontMetrics fm( painter->font() );
QString s = stringShown(row);
if ( s.isNull() ) {
qWarning( "QtMultiLineEdit::paintCell: (%s) no text at line %d",
tqWarning( "QtMultiLineEdit::paintCell: (%s) no text at line %d",
name( "unnamed" ), row );
return;
}
@ -2157,8 +2157,8 @@ void QtMultiLineEdit::mousePressEvent( QMouseEvent *e )
if ( !isReadOnly() ) {
const char* fmt;
for (int i=0; !ps && (fmt=ms->format(i)); i++) {
ps = qstrnicmp(fmt,"text/",5)==0
&& qstrnicmp(fmt+5,"plain",5)!=0;
ps = tqstrnicmp(fmt,"text/",5)==0
&& tqstrnicmp(fmt+5,"plain",5)!=0;
}
}
}

@ -272,7 +272,7 @@ void QtTableView::setNumRows( int rows )
{
if ( rows < 0 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QtTableView::setNumRows: (%s) Negative argument %d.",
tqWarning( "QtTableView::setNumRows: (%s) Negative argument %d.",
name( "unnamed" ), rows );
#endif
return;
@ -314,7 +314,7 @@ void QtTableView::setNumCols( int cols )
{
if ( cols < 0 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QtTableView::setNumCols: (%s) Negative argument %d.",
tqWarning( "QtTableView::setNumCols: (%s) Negative argument %d.",
name( "unnamed" ), cols );
#endif
return;
@ -580,7 +580,7 @@ void QtTableView::setCellWidth( int cellWidth )
return;
#if defined(QT_CHECK_RANGE)
if ( cellWidth < 0 || cellWidth > SHRT_MAX ) {
qWarning( "QtTableView::setCellWidth: (%s) Argument out of range (%d)",
tqWarning( "QtTableView::setCellWidth: (%s) Argument out of range (%d)",
name( "unnamed" ), cellWidth );
return;
}
@ -634,7 +634,7 @@ void QtTableView::setCellHeight( int cellHeight )
return;
#if defined(QT_CHECK_RANGE)
if ( cellHeight < 0 || cellHeight > SHRT_MAX ) {
qWarning( "QtTableView::setCellHeight: (%s) Argument out of range (%d)",
tqWarning( "QtTableView::setCellHeight: (%s) Argument out of range (%d)",
name( "unnamed" ), cellHeight );
return;
}
@ -1578,7 +1578,7 @@ int QtTableView::findRawRow( int yPos, int *cellMaxY, int *cellMinY,
if ( goOutsideView || yPos >= minViewY() && yPos <= maxViewY() ) {
if ( yPos < minViewY() ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QtTableView::findRawRow: (%s) internal error: "
tqWarning( "QtTableView::findRawRow: (%s) internal error: "
"yPos < minViewY() && goOutsideView "
"not supported. (%d,%d)",
name( "unnamed" ), yPos, yOffs );
@ -1625,7 +1625,7 @@ int QtTableView::findRawCol( int xPos, int *cellMaxX, int *cellMinX ,
if ( goOutsideView || xPos >= minViewX() && xPos <= maxViewX() ) {
if ( xPos < minViewX() ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QtTableView::findRawCol: (%s) internal error: "
tqWarning( "QtTableView::findRawCol: (%s) internal error: "
"xPos < minViewX() && goOutsideView "
"not supported. (%d,%d)",
name( "unnamed" ), xPos, xOffs );

@ -3013,7 +3013,7 @@ QCanvasPixmapArray::QCanvasPixmapArray(QPtrList<QPixmap> list, QPtrList<QPoint>
img(new QCanvasPixmap*[list.count()])
{
if (list.count() != hotspots.count()) {
qWarning("QCanvasPixmapArray: lists have different lengths");
tqWarning("QCanvasPixmapArray: lists have different lengths");
reset();
img = 0;
} else {
@ -3041,7 +3041,7 @@ QCanvasPixmapArray::QCanvasPixmapArray(QValueList<QPixmap> list, QPointArray hot
{
bool have_hotspots = ( hotspots.size() != 0 );
if (have_hotspots && list.count() != hotspots.count()) {
qWarning("QCanvasPixmapArray: lists have different lengths");
tqWarning("QCanvasPixmapArray: lists have different lengths");
reset();
img = 0;
} else {
@ -3480,7 +3480,7 @@ void QCanvasSprite::draw(QPainter& painter)
QCanvasItemList l = canvas()->collisions(e->pos());
for (QCanvasItemList::Iterator it=l.begin(); it!=l.end(); ++it) {
if ( (*it)->rtti() == QCanvasRectangle::RTTI )
qDebug("A QCanvasRectangle lies somewhere at this point");
tqDebug("A QCanvasRectangle lies somewhere at this point");
}
}
\endcode
@ -4295,7 +4295,7 @@ QCanvasSpline::~QCanvasSpline()
void QCanvasSpline::setControlPoints(QPointArray ctrl, bool close)
{
if ( (int)ctrl.count() % 3 != (close ? 0 : 1) ) {
qWarning( "QCanvasSpline::setControlPoints(): Number of points doesn't fit." );
tqWarning( "QCanvasSpline::setControlPoints(): Number of points doesn't fit." );
int numCurves = (ctrl.count() - (close ? 0 : 1 ))/ 3;
ctrl.resize( numCurves*3 + ( close ? 0 : 1 ) );
}

@ -531,7 +531,7 @@ static int qt_UnicodeToBig5(ushort ch, uchar *buf)
int QBig5Codec::mibEnum() const
{
/* See http://www.iana.org/assignments/character-sets */
//qDebug("QBig5Codec::mibEnum() = 2026");
//tqDebug("QBig5Codec::mibEnum() = 2026");
return 2026;
}
@ -539,7 +539,7 @@ int QBig5Codec::mibEnum() const
/*! \reimp */
const char* QBig5Codec::name() const
{
//qDebug("QBig5Codec::name() = \"Big5\"");
//tqDebug("QBig5Codec::name() = \"Big5\"");
return "Big5";
}
@ -554,7 +554,7 @@ public:
QString toUnicode(const char* chars, int len)
{
//qDebug("QBig5Decoder::toUnicode(const char* chars = \"%s\", int len = %d)", chars, len);
//tqDebug("QBig5Decoder::toUnicode(const char* chars = \"%s\", int len = %d)", chars, len);
QString result;
for (int i=0; i<len; i++) {
uchar ch = chars[i];
@ -599,7 +599,7 @@ public:
/*! \reimp */
QTextDecoder* QBig5Codec::makeDecoder() const
{
//qDebug("QBig5Codec::makeDecoder()");
//tqDebug("QBig5Codec::makeDecoder()");
return new QBig5Decoder();
}
@ -607,7 +607,7 @@ QTextDecoder* QBig5Codec::makeDecoder() const
/*! \reimp */
QCString QBig5Codec::fromUnicode(const QString& uc, int& lenInOut) const
{
//qDebug("QBig5Codec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
//tqDebug("QBig5Codec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
int l = QMIN((int)uc.length(),lenInOut);
int rlen = l*3+1;
QCString rstr(rlen);
@ -639,7 +639,7 @@ QCString QBig5Codec::fromUnicode(const QString& uc, int& lenInOut) const
/*! \reimp */
QString QBig5Codec::toUnicode(const char* chars, int len) const
{
//qDebug("QBig5Codec::toUnicode(const char* chars \"%s\", int len = %d)", chars, len);
//tqDebug("QBig5Codec::toUnicode(const char* chars \"%s\", int len = %d)", chars, len);
QString result;
for (int i=0; i<len; i++) {
uchar ch = chars[i];
@ -677,7 +677,7 @@ QString QBig5Codec::toUnicode(const char* chars, int len) const
/*! \reimp */
int QBig5Codec::heuristicContentMatch(const char* chars, int len) const
{
//qDebug("QBig5Codec::heuristicContentMatch(const char* chars, int len = %d)", len);
//tqDebug("QBig5Codec::heuristicContentMatch(const char* chars, int len = %d)", len);
int score = 0;
for (int i=0; i<len; i++) {
uchar ch = chars[i];
@ -705,7 +705,7 @@ int QBig5Codec::heuristicContentMatch(const char* chars, int len) const
return -1;
}
}
//qDebug("QBig5Codec::heuristicContentMatch() score = %d", score);
//tqDebug("QBig5Codec::heuristicContentMatch() score = %d", score);
return score;
}
@ -713,15 +713,15 @@ int QBig5Codec::heuristicContentMatch(const char* chars, int len) const
/*! \reimp */
int QBig5Codec::heuristicNameMatch(const char* hint) const
{
//qDebug("QBig5hkscsCodec::heuristicNameMatch(const char* hint = \"%s\")", hint);
//tqDebug("QBig5hkscsCodec::heuristicNameMatch(const char* hint = \"%s\")", hint);
int score = 0;
bool zh = FALSE;
if (qstrnicmp(hint, "zh_TW", 5) == 0) {
if (tqstrnicmp(hint, "zh_TW", 5) == 0) {
score += 16;
zh = TRUE;
}
else if ( qstrnicmp(hint, "zh", 2) == 0 ||
qstrnicmp(hint, "chinese", 7) == 0) {
else if ( tqstrnicmp(hint, "zh", 2) == 0 ||
tqstrnicmp(hint, "chinese", 7) == 0) {
score += 2;
zh = TRUE;
}
@ -735,11 +735,11 @@ int QBig5Codec::heuristicNameMatch(const char* hint) const
p = hint;
}
if (p) {
if ( qstricmp(p, "Big5") == 0 ||
qstricmp(p, "TW-Big5") == 0 ) {
if ( tqstricmp(p, "Big5") == 0 ||
tqstricmp(p, "TW-Big5") == 0 ) {
return score + 10;
}
else if ( qstrnicmp(p, "Big5", 4) == 0 )
else if ( tqstrnicmp(p, "Big5", 4) == 0 )
return score + 2;
}
return QTextCodec::heuristicNameMatch(hint);
@ -817,7 +817,7 @@ int QBig5hkscsCodec::mibEnum() const
{
/* See http://www.iana.org/assignments/character-sets */
/* http://www.iana.org/assignments/charset-reg/Big5-HKSCS */
//qDebug("QBig5hkscsCodec::mibEnum() = 2101");
//tqDebug("QBig5hkscsCodec::mibEnum() = 2101");
return 2101;
}
@ -825,7 +825,7 @@ int QBig5hkscsCodec::mibEnum() const
/*! \reimp */
const char* QBig5hkscsCodec::name() const
{
//qDebug("QBig5hkscsCodec::name() = \"Big5-HKSCS\"");
//tqDebug("QBig5hkscsCodec::name() = \"Big5-HKSCS\"");
return "Big5-HKSCS";
}
@ -840,7 +840,7 @@ public:
QString toUnicode(const char* chars, int len)
{
//qDebug("QBig5hkscsDecoder::toUnicode(const char* chars = \"%s\", int len = %d)", chars, len);
//tqDebug("QBig5hkscsDecoder::toUnicode(const char* chars = \"%s\", int len = %d)", chars, len);
QString result;
for (int i=0; i<len; i++) {
uchar ch = chars[i];
@ -885,7 +885,7 @@ public:
/*! \reimp */
QTextDecoder* QBig5hkscsCodec::makeDecoder() const
{
//qDebug("QBig5hkscsCodec::makeDecoder()");
//tqDebug("QBig5hkscsCodec::makeDecoder()");
return new QBig5hkscsDecoder();
}
@ -893,7 +893,7 @@ QTextDecoder* QBig5hkscsCodec::makeDecoder() const
/*! \reimp */
QCString QBig5hkscsCodec::fromUnicode(const QString& uc, int& lenInOut) const
{
//qDebug("QBig5hkscsCodec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
//tqDebug("QBig5hkscsCodec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
int l = QMIN((int)uc.length(),lenInOut);
int rlen = l*3+1;
QCString rstr(rlen);
@ -922,7 +922,7 @@ QCString QBig5hkscsCodec::fromUnicode(const QString& uc, int& lenInOut) const
/*! \reimp */
QString QBig5hkscsCodec::toUnicode(const char* chars, int len) const
{
//qDebug("QBig5hkscsCodec::toUnicode(const char* chars = \"%s\", int len = %d)", chars, len);
//tqDebug("QBig5hkscsCodec::toUnicode(const char* chars = \"%s\", int len = %d)", chars, len);
QString result;
for (int i=0; i<len; i++) {
uchar ch = chars[i];
@ -960,15 +960,15 @@ QString QBig5hkscsCodec::toUnicode(const char* chars, int len) const
/*! \reimp */
int QBig5hkscsCodec::heuristicNameMatch(const char* hint) const
{
//qDebug("QBig5hkscsCodec::heuristicNameMatch(const char* hint = \"%s\")", hint);
//tqDebug("QBig5hkscsCodec::heuristicNameMatch(const char* hint = \"%s\")", hint);
int score = 0;
bool zh = FALSE;
if (qstrnicmp(hint, "zh_HK", 5) == 0) {
if (tqstrnicmp(hint, "zh_HK", 5) == 0) {
score += 16;
zh = TRUE;
}
else if ( qstrnicmp(hint, "zh", 2) == 0 ||
qstrnicmp(hint, "chinese", 7) == 0) {
else if ( tqstrnicmp(hint, "zh", 2) == 0 ||
tqstrnicmp(hint, "chinese", 7) == 0) {
score += 2;
zh = TRUE;
}
@ -982,13 +982,13 @@ int QBig5hkscsCodec::heuristicNameMatch(const char* hint) const
p = hint;
}
if (p) {
if ( qstricmp(p, "Big5-HKSCS") == 0 ||
qstricmp(p, "HKSCS-Big5") == 0 ||
qstricmp(p, "Big5HKSCS") == 0 ||
qstricmp(p, "hkbig5") == 0 ) {
if ( tqstricmp(p, "Big5-HKSCS") == 0 ||
tqstricmp(p, "HKSCS-Big5") == 0 ||
tqstricmp(p, "Big5HKSCS") == 0 ||
tqstricmp(p, "hkbig5") == 0 ) {
return score + 10;
}
else if (qstrnicmp(p, "Big5", 4) == 0) {
else if (tqstrnicmp(p, "Big5", 4) == 0) {
return score + 2;
}
}
@ -999,7 +999,7 @@ int QBig5hkscsCodec::heuristicNameMatch(const char* hint) const
/*! \reimp */
int QBig5hkscsCodec::heuristicContentMatch(const char* chars, int len) const
{
//qDebug("QBig5hkscsCodec::heuristicContentMatch(const char* chars, int len = %d)", len);
//tqDebug("QBig5hkscsCodec::heuristicContentMatch(const char* chars, int len = %d)", len);
int score = 0;
for (int i=0; i<len; i++) {
uchar ch = chars[i];
@ -1027,7 +1027,7 @@ int QBig5hkscsCodec::heuristicContentMatch(const char* chars, int len) const
return -1;
}
}
//qDebug("QBig5hkscsCodec::heuristicContentMatch() score = %d", score);
//tqDebug("QBig5hkscsCodec::heuristicContentMatch() score = %d", score);
return score;
}

@ -302,10 +302,10 @@ int QEucJpCodec::heuristicNameMatch(const char* hint) const
{
int score = 0;
bool ja = FALSE;
if (qstrnicmp(hint, "ja_JP", 5) == 0 || qstrnicmp(hint, "japan", 5) == 0) {
if (tqstrnicmp(hint, "ja_JP", 5) == 0 || tqstrnicmp(hint, "japan", 5) == 0) {
score += 3;
ja = TRUE;
} else if (qstrnicmp(hint, "ja", 2) == 0) {
} else if (tqstrnicmp(hint, "ja", 2) == 0) {
score += 2;
ja = TRUE;
}
@ -320,16 +320,16 @@ int QEucJpCodec::heuristicNameMatch(const char* hint) const
p = hint;
}
if (p) {
if ((qstricmp(p, "AJEC") == 0) ||
(qstricmp(p, "eucJP") == 0) ||
(qstricmp(p, "ujis") == 0) ||
if ((tqstricmp(p, "AJEC") == 0) ||
(tqstricmp(p, "eucJP") == 0) ||
(tqstricmp(p, "ujis") == 0) ||
(simpleHeuristicNameMatch(p, "eucJP") > 0) ||
(simpleHeuristicNameMatch(p, "x-euc-jp") > 0)) {
return score + 4;
}
// there exists ja_JP.EUC, ko_KR.EUC, zh_CN.EUC and zh_TW.EUC
// so "euc" may or may not be Japanese EUC.
if (qstricmp(p, "euc") == 0 && ja) {
if (tqstricmp(p, "euc") == 0 && ja) {
return score + 4;
}
}

@ -212,11 +212,11 @@ int QEucKrCodec::heuristicNameMatch(const char* hint) const
{
int score = 0;
bool ko = FALSE;
if (qstrnicmp(hint, "ko_KR", 5) == 0 ||
qstrnicmp(hint, "korean", 5) == 0) {
if (tqstrnicmp(hint, "ko_KR", 5) == 0 ||
tqstrnicmp(hint, "korean", 5) == 0) {
score += 3;
ko = TRUE;
} else if (qstrnicmp(hint, "ko", 2) == 0) {
} else if (tqstrnicmp(hint, "ko", 2) == 0) {
score += 2;
ko = TRUE;
}
@ -231,10 +231,10 @@ int QEucKrCodec::heuristicNameMatch(const char* hint) const
p = hint;
}
if (p) {
if (qstricmp(p, "eucKR") == 0) {
if (tqstricmp(p, "eucKR") == 0) {
return score + 4;
}
else if (qstricmp(p, "euc") == 0 && ko) {
else if (tqstricmp(p, "euc") == 0 && ko) {
return score + 4;
}
}

@ -55,20 +55,20 @@ int QFontGb2312Codec::heuristicContentMatch(const char *, int) const
QFontGb2312Codec::QFontGb2312Codec()
{
//qDebug("QFontGb2312Codec::QFontGb2312Codec()");
//tqDebug("QFontGb2312Codec::QFontGb2312Codec()");
}
const char* QFontGb2312Codec::name() const
{
//qDebug("QFontGb2312Codec::name() = \"gb2312.1980-0\"");
//tqDebug("QFontGb2312Codec::name() = \"gb2312.1980-0\"");
return "gb2312.1980-0";
}
int QFontGb2312Codec::mibEnum() const
{
//qDebug("QFontGb2312Codec::mibEnum() = 57");
//tqDebug("QFontGb2312Codec::mibEnum() = 57");
return 57;
}
@ -93,7 +93,7 @@ QCString QFontGb2312Codec::fromUnicode(const QString& uc, int& lenInOut ) const
uchar *rdata = (uchar *) result.data();
const QChar *ucp = uc.unicode();
//qDebug("QFontGb2312Codec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
//tqDebug("QFontGb2312Codec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
for ( int i = 0; i < lenInOut; i++ ) {
QChar ch(*ucp++);
uchar buf[8];
@ -137,7 +137,7 @@ bool QFontGb2312Codec::canEncode( QChar ch ) const
{
uchar buf[4];
int len = qt_UnicodeToGbk( ch.unicode(), buf );
//qDebug("QFontGb2312Codec::canEncode( QChar ch = %02X%02X )", ch.row(), ch.cell());
//tqDebug("QFontGb2312Codec::canEncode( QChar ch = %02X%02X )", ch.row(), ch.cell());
return ( len == 2 && buf[0] > 0xa0 && buf[1] > 0xa0 );
}
@ -152,29 +152,29 @@ int QFontGbkCodec::heuristicContentMatch(const char *, int) const
int QFontGbkCodec::heuristicNameMatch(const char* hint) const
{
//qDebug("QFontGbkCodec::heuristicNameMatch(const char* hint = \"%s\")", hint);
return ( qstricmp(hint, "gbk-0") == 0 ||
qstricmp(hint, "gb18030.2000-0") == 0 )
//tqDebug("QFontGbkCodec::heuristicNameMatch(const char* hint = \"%s\")", hint);
return ( tqstricmp(hint, "gbk-0") == 0 ||
tqstricmp(hint, "gb18030.2000-0") == 0 )
? 13 : 0;
}
QFontGbkCodec::QFontGbkCodec()
{
//qDebug("QFontGbkCodec::QFontGbkCodec()");
//tqDebug("QFontGbkCodec::QFontGbkCodec()");
}
const char* QFontGbkCodec::name() const
{
//qDebug("QFontGbkCodec::name() = \"gbk-0\"");
//tqDebug("QFontGbkCodec::name() = \"gbk-0\"");
return "gbk-0";
}
int QFontGbkCodec::mibEnum() const
{
//qDebug("QFontGbkCodec::mibEnum() = -113");
//tqDebug("QFontGbkCodec::mibEnum() = -113");
return -113;
}
@ -199,7 +199,7 @@ QCString QFontGbkCodec::fromUnicode(const QString& uc, int& lenInOut ) const
uchar *rdata = (uchar *) result.data();
const QChar *ucp = uc.unicode();
//qDebug("QFontGbkCodec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
//tqDebug("QFontGbkCodec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
for ( int i = 0; i < lenInOut; i++ ) {
QChar ch(*ucp++);
uchar buf[8];
@ -236,7 +236,7 @@ bool QFontGbkCodec::canEncode( QChar ch ) const
return TRUE;
uchar buf[4];
int len = qt_UnicodeToGbk( ch.unicode(), buf );
//qDebug("QFontGbkCodec::canEncode( QChar ch = %02X%02X )", ch.row(), ch.cell());
//tqDebug("QFontGbkCodec::canEncode( QChar ch = %02X%02X )", ch.row(), ch.cell());
return ( len == 2 );
}
@ -250,20 +250,20 @@ int QFontGb18030_0Codec::heuristicContentMatch(const char *, int) const
QFontGb18030_0Codec::QFontGb18030_0Codec()
{
//qDebug("QFontGb18030_0Codec::QFontGb18030_0Codec()");
//tqDebug("QFontGb18030_0Codec::QFontGb18030_0Codec()");
}
const char* QFontGb18030_0Codec::name() const
{
//qDebug("QFontGb18030_0Codec::name() = \"gb18030-0\"");
//tqDebug("QFontGb18030_0Codec::name() = \"gb18030-0\"");
return "gb18030-0";
}
int QFontGb18030_0Codec::mibEnum() const
{
//qDebug("QFontGb18030_0Codec::mibEnum() = -114");
//tqDebug("QFontGb18030_0Codec::mibEnum() = -114");
return -114;
}
@ -288,7 +288,7 @@ QCString QFontGb18030_0Codec::fromUnicode(const QString& uc, int& lenInOut ) con
uchar *rdata = (uchar *) result.data();
const QChar *ucp = uc.unicode();
//qDebug("QFontGb18030_0Codec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
//tqDebug("QFontGb18030_0Codec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
for ( int i = 0; i < lenInOut; i++ ) {
QChar ch(*ucp++);
if (ch.row () > 0 && !(ch.row () >= 0xd8 && ch.row () < 0xe0)) {
@ -317,7 +317,7 @@ void QFontGb18030_0Codec::fromUnicode(const QChar *in, unsigned short *out, int
bool QFontGb18030_0Codec::canEncode( QChar ch ) const
{
//qDebug("QFontGb18030_0Codec::canEncode( QChar ch = %02X%02X )", ch.row(), ch.cell());
//tqDebug("QFontGb18030_0Codec::canEncode( QChar ch = %02X%02X )", ch.row(), ch.cell());
return (ch.row () > 0 && !(ch.row () >= 0xd8 && ch.row () < 0xe0));
}

@ -54,29 +54,29 @@ int QFontBig5hkscsCodec::heuristicContentMatch(const char *, int) const
int QFontBig5hkscsCodec::heuristicNameMatch(const char* hint) const
{
//qDebug("QFontBig5hkscsCodec::heuristicNameMatch(const char* hint = \"%s\")", hint);
return ( qstricmp(hint, "big5hkscs-0") == 0 ||
qstricmp(hint, "hkscs-1") == 0 )
//tqDebug("QFontBig5hkscsCodec::heuristicNameMatch(const char* hint = \"%s\")", hint);
return ( tqstricmp(hint, "big5hkscs-0") == 0 ||
tqstricmp(hint, "hkscs-1") == 0 )
? 13 : 0;
}
QFontBig5hkscsCodec::QFontBig5hkscsCodec()
{
//qDebug("QFontBig5hkscsCodec::QFontBig5hkscsCodec()");
//tqDebug("QFontBig5hkscsCodec::QFontBig5hkscsCodec()");
}
const char* QFontBig5hkscsCodec::name() const
{
//qDebug("QFontBig5hkscsCodec::name() = \"big5hkscs-0\"");
//tqDebug("QFontBig5hkscsCodec::name() = \"big5hkscs-0\"");
return "big5hkscs-0";
}
int QFontBig5hkscsCodec::mibEnum() const
{
//qDebug("QFontBig5hkscsCodec::mibEnum() = -2101");
//tqDebug("QFontBig5hkscsCodec::mibEnum() = -2101");
return -2101;
}
@ -97,7 +97,7 @@ QFontBig5hkscsCodec::characterFromUnicode(const QString &str, int pos) const
QCString QFontBig5hkscsCodec::fromUnicode(const QString& uc, int& lenInOut ) const
{
//qDebug("QFontBig5hkscsCodec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
//tqDebug("QFontBig5hkscsCodec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
QCString result(lenInOut * 2 + 1);
uchar *rdata = (uchar *) result.data();
const QChar *ucp = uc.unicode();
@ -151,7 +151,7 @@ void QFontBig5hkscsCodec::fromUnicode(const QChar *in, unsigned short *out, int
bool QFontBig5hkscsCodec::canEncode( QChar ch ) const
{
//qDebug("QFontBig5hkscsCodec::canEncode( QChar ch = %02X%02X )", ch.row(), ch.cell());
//tqDebug("QFontBig5hkscsCodec::canEncode( QChar ch = %02X%02X )", ch.row(), ch.cell());
uchar c[2];
return ( qt_UnicodeToBig5hkscs( ch.unicode(), c ) == 2 );
}

@ -54,29 +54,29 @@ int QFontBig5Codec::heuristicContentMatch(const char *, int) const
int QFontBig5Codec::heuristicNameMatch(const char* hint) const
{
//qDebug("QFontBig5Codec::heuristicNameMatch(const char* hint = \"%s\")", hint);
return ( qstricmp(hint, "big5-0") == 0 ||
qstricmp(hint, "big5.eten-0") == 0 )
//tqDebug("QFontBig5Codec::heuristicNameMatch(const char* hint = \"%s\")", hint);
return ( tqstricmp(hint, "big5-0") == 0 ||
tqstricmp(hint, "big5.eten-0") == 0 )
? 13 : 0;
}
QFontBig5Codec::QFontBig5Codec()
{
//qDebug("QFontBig5Codec::QFontBig5Codec()");
//tqDebug("QFontBig5Codec::QFontBig5Codec()");
}
const char* QFontBig5Codec::name() const
{
//qDebug("QFontBig5Codec::name() = \"big5-0\"");
//tqDebug("QFontBig5Codec::name() = \"big5-0\"");
return "big5-0";
}
int QFontBig5Codec::mibEnum() const
{
//qDebug("QFontBig5Codec::mibEnum() = -2026");
//tqDebug("QFontBig5Codec::mibEnum() = -2026");
return -2026;
}
@ -97,7 +97,7 @@ unsigned short QFontBig5Codec::characterFromUnicode(const QString &str, int pos)
QCString QFontBig5Codec::fromUnicode(const QString& uc, int& lenInOut ) const
{
//qDebug("QFontBig5Codec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
//tqDebug("QFontBig5Codec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
QCString result(lenInOut * 2 + 1);
uchar *rdata = (uchar *) result.data();
const QChar *ucp = uc.unicode();
@ -152,7 +152,7 @@ void QFontBig5Codec::fromUnicode(const QChar *in, unsigned short *out, int lengt
bool QFontBig5Codec::canEncode( QChar ch ) const
{
//qDebug("QFontBig5Codec::canEncode( QChar ch = %02X%02X )", ch.row(), ch.cell());
//tqDebug("QFontBig5Codec::canEncode( QChar ch = %02X%02X )", ch.row(), ch.cell());
uchar c[2];
return ( qt_UnicodeToBig5hkscs( ch.unicode(), c ) == 2 &&
c[0] >= 0xa1 && c[0] <= 0xf9 );

@ -161,7 +161,7 @@ QGb18030Codec::QGb18030Codec()
/*! \reimp */
const char* QGb18030Codec::name() const
{
//qDebug("QGb18030Codec::name() = \"GB18030\"");
//tqDebug("QGb18030Codec::name() = \"GB18030\"");
return "GB18030";
}
@ -179,7 +179,7 @@ QCString QGb18030Codec::fromUnicode(const QString& uc, int& lenInOut) const
QCString rstr(rlen);
uchar* cursor = (uchar*)rstr.data();
//qDebug("QGb18030Codec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
//tqDebug("QGb18030Codec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
for (int i=0; i<l; i++) {
QChar ch = uc[i];
int len;
@ -231,7 +231,7 @@ QString QGb18030Codec::toUnicode(const char* chars, int len) const
QString result;
int clen;
//qDebug("QGb18030Codec::toUnicode(const char* chars, int len = %d)", len);
//tqDebug("QGb18030Codec::toUnicode(const char* chars, int len = %d)", len);
for (int i=0; i<len; ) {
uchar ch = chars[i];
@ -274,8 +274,8 @@ int QGb18030Codec::heuristicNameMatch(const char* hint) const
{
int score = 0;
bool zh = FALSE;
//qDebug("QGb18030Codec::heuristicNameMatch(const char* hint = \"%s\")", hint);
if (qstrnicmp(hint, "zh_CN", 5) == 0){
//tqDebug("QGb18030Codec::heuristicNameMatch(const char* hint = \"%s\")", hint);
if (tqstrnicmp(hint, "zh_CN", 5) == 0){
score += 10;
zh = TRUE;
}
@ -289,7 +289,7 @@ int QGb18030Codec::heuristicNameMatch(const char* hint) const
p = hint;
}
if (p) {
if (qstricmp(p, "GB18030") == 0)
if (tqstricmp(p, "GB18030") == 0)
return score + 14;
}
return QTextCodec::heuristicNameMatch(hint);
@ -299,7 +299,7 @@ int QGb18030Codec::heuristicNameMatch(const char* hint) const
int QGb18030Codec::heuristicContentMatch(const char* chars, int len) const
{
int score = 0;
//qDebug("QGb18030Codec::heuristicContentMatch(const char* chars, int len = %d)", len);
//tqDebug("QGb18030Codec::heuristicContentMatch(const char* chars, int len = %d)", len);
for (int i=0; i<len; i++) {
uchar ch = chars[i];
// No nulls allowed.
@ -351,7 +351,7 @@ public:
QString toUnicode(const char* chars, int len)
{
QString result;
//qDebug("QGb18030Decoder::toUnicode(const char* chars, int len = %d)", len);
//tqDebug("QGb18030Decoder::toUnicode(const char* chars, int len = %d)", len);
for (int i=0; i<len; i++) {
uchar ch = chars[i];
switch (nbuf) {
@ -433,7 +433,7 @@ public:
/*! \reimp */
QTextDecoder* QGb18030Codec::makeDecoder() const
{
//qDebug("QGb18030Codec::makeDecoder()");
//tqDebug("QGb18030Codec::makeDecoder()");
return new QGb18030Decoder();
}
@ -480,15 +480,15 @@ int QGbkCodec::heuristicNameMatch(const char* hint) const
{
#if 0
// these are needed so that the X11 fonts behave correctly.
if (qstricmp (hint, "gbk-0") == 0 ||
qstricmp (hint, "gb18030.2000-0") == 0)
if (tqstricmp (hint, "gbk-0") == 0 ||
tqstricmp (hint, "gb18030.2000-0") == 0)
return 13;
#endif
int score = 0;
bool zh = FALSE;
//qDebug("QGbkCodec::heuristicNameMatch(const char* hint = \"%s\")", hint);
if (qstrnicmp(hint, "zh_CN", 5) == 0){
//tqDebug("QGbkCodec::heuristicNameMatch(const char* hint = \"%s\")", hint);
if (tqstrnicmp(hint, "zh_CN", 5) == 0){
score += 10;
zh = TRUE;
}
@ -502,7 +502,7 @@ int QGbkCodec::heuristicNameMatch(const char* hint) const
p = hint;
}
if (p) {
if (qstricmp(p, "GBK") == 0)
if (tqstricmp(p, "GBK") == 0)
return score + 6;
}
return QTextCodec::heuristicNameMatch(hint);
@ -511,7 +511,7 @@ int QGbkCodec::heuristicNameMatch(const char* hint) const
/*! \reimp */
int QGbkCodec::heuristicContentMatch(const char* /*chars*/, int /*len*/) const
{
//qDebug("QGbkCodec::heuristicContentMatch(const char* /*chars*/, int /*len*/)");
//tqDebug("QGbkCodec::heuristicContentMatch(const char* /*chars*/, int /*len*/)");
return 0;
}
@ -526,7 +526,7 @@ public:
{
QString result;
//qDebug("QGbkDecoder::toUnicode(const char* chars = \"%s\", int len = %d)", chars, len);
//tqDebug("QGbkDecoder::toUnicode(const char* chars = \"%s\", int len = %d)", chars, len);
for (int i=0; i<len; i++) {
uchar ch = chars[i];
switch (nbuf) {
@ -570,7 +570,7 @@ public:
/*! \reimp */
QTextDecoder* QGbkCodec::makeDecoder() const
{
//qDebug("QGbkCodec::makeDecoder()");
//tqDebug("QGbkCodec::makeDecoder()");
return new QGbkDecoder();
}
@ -582,7 +582,7 @@ QCString QGbkCodec::fromUnicode(const QString& uc, int& lenInOut) const
QCString rstr(rlen);
uchar* cursor = (uchar*)rstr.data();
//qDebug("QGbkCodec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
//tqDebug("QGbkCodec::fromUnicode(const QString& uc, int& lenInOut = %d)", lenInOut);
for (int i=0; i<l; i++) {
QChar ch = uc[i];
uchar buf[2];
@ -610,7 +610,7 @@ QString QGbkCodec::toUnicode(const char* chars, int len) const
QString result;
int clen;
//qDebug("QGbkCodec::toUnicode(const char* chars, int len = %d)", len);
//tqDebug("QGbkCodec::toUnicode(const char* chars, int len = %d)", len);
for (int i=0; i<len; ) {
uchar ch = chars[i];
@ -681,8 +681,8 @@ int QGb2312Codec::heuristicNameMatch(const char* hint) const
{
int score = 0;
bool zh = FALSE;
//qDebug("QGb2312Codec::heuristicNameMatch(const char* hint = \"%s\")", hint);
if (qstrnicmp(hint, "zh_CN", 5) == 0){
//tqDebug("QGb2312Codec::heuristicNameMatch(const char* hint = \"%s\")", hint);
if (tqstrnicmp(hint, "zh_CN", 5) == 0){
score += 10;
zh = TRUE;
}
@ -696,13 +696,13 @@ int QGb2312Codec::heuristicNameMatch(const char* hint) const
p = hint;
}
if (p) {
if (qstricmp(p, "GB2312") == 0 ||
qstricmp(p, "hp15cn") == 0)
if (tqstricmp(p, "GB2312") == 0 ||
tqstricmp(p, "hp15cn") == 0)
return score + 7;
else if (qstricmp(p, "eucCN") == 0)
else if (tqstricmp(p, "eucCN") == 0)
return score + 4;
// there exists ja_JP.EUC, ko_KR.EUC, zh_CN.EUC and zh_TW.EUC
else if (qstricmp(p, "euc") == 0 && zh)
else if (tqstricmp(p, "euc") == 0 && zh)
return score + 4;
}
return QTextCodec::heuristicNameMatch(hint);
@ -711,7 +711,7 @@ int QGb2312Codec::heuristicNameMatch(const char* hint) const
/*! \reimp */
int QGb2312Codec::heuristicContentMatch(const char* /*chars*/, int /*len*/) const
{
//qDebug("QGb2312Codec::heuristicContentMatch(const char* /*chars*/, int /*len*/)");
//tqDebug("QGb2312Codec::heuristicContentMatch(const char* /*chars*/, int /*len*/)");
return 0;
}
@ -725,7 +725,7 @@ public:
QString toUnicode(const char* chars, int len)
{
QString result;
//qDebug("QGb2312Decoder::toUnicode(const char* chars, int len = %d)", len);
//tqDebug("QGb2312Decoder::toUnicode(const char* chars, int len = %d)", len);
for (int i=0; i<len; i++) {
uchar ch = chars[i];
switch (nbuf) {
@ -769,7 +769,7 @@ public:
/*! \reimp */
QTextDecoder* QGb2312Codec::makeDecoder() const
{
//qDebug("QGb2312Codec::makeDecoder()");
//tqDebug("QGb2312Codec::makeDecoder()");
return new QGb2312Decoder();
}
@ -781,7 +781,7 @@ QCString QGb2312Codec::fromUnicode(const QString& uc, int& lenInOut) const
QCString rstr(rlen);
uchar* cursor = (uchar*)rstr.data();
//qDebug("QGb2312Codec::fromUnicode(const QString& uc, int& lenInOut = %d) const", lenInOut);
//tqDebug("QGb2312Codec::fromUnicode(const QString& uc, int& lenInOut = %d) const", lenInOut);
for (int i=0; i<l; i++) {
QChar ch = uc[i];
uchar buf[2];
@ -810,7 +810,7 @@ QString QGb2312Codec::toUnicode(const char* chars, int len) const
QString result;
int clen;
//qDebug("QGb2312Codec::toUnicode(const char* chars, int len = %d)", len);
//tqDebug("QGb2312Codec::toUnicode(const char* chars, int len = %d)", len);
for (int i=0; i<len; ) {
uchar ch = chars[i];

@ -387,17 +387,17 @@ const char* QJisCodec::mimeName() const
/*! \internal */
int QJisCodec::heuristicNameMatch(const char* hint) const
{
if ( qstrnicmp( hint, "ISO-2022-JP", 11 ) == 0 )
if ( tqstrnicmp( hint, "ISO-2022-JP", 11 ) == 0 )
return 10000;
if ( simpleHeuristicNameMatch( "ISO-2022-JP-2", hint ) > 0 )
return 10;
int score = 0;
bool ja = FALSE;
if (qstrnicmp(hint, "ja_JP", 5) == 0 || qstrnicmp(hint, "japan", 5) == 0) {
if (tqstrnicmp(hint, "ja_JP", 5) == 0 || tqstrnicmp(hint, "japan", 5) == 0) {
score += 3;
ja = TRUE;
} else if (qstrnicmp(hint, "ja", 2) == 0) {
} else if (tqstrnicmp(hint, "ja", 2) == 0) {
score += 2;
ja = TRUE;
}
@ -412,8 +412,8 @@ int QJisCodec::heuristicNameMatch(const char* hint) const
p = hint;
}
if (p) {
if ((qstricmp(p, "JIS") == 0) ||
(qstricmp(p, "JIS7") == 0) ||
if ((tqstricmp(p, "JIS") == 0) ||
(tqstricmp(p, "JIS7") == 0) ||
(simpleHeuristicNameMatch("ISO-2022-JP", p) > 0)) {
return score + 4;
}

@ -778,32 +778,32 @@ QJpUnicodeConv *QJpUnicodeConv::newConverter(int rule)
s = env.mid(i, j - i).stripWhiteSpace();
i = j + 1;
}
if (qstricmp(s, "unicode-0.9") == 0) {
if (tqstricmp(s, "unicode-0.9") == 0) {
rule = (rule & 0xff00) | Unicode;
} else if (qstricmp(s, "unicode-0201") == 0) {
} else if (tqstricmp(s, "unicode-0201") == 0) {
rule = (rule & 0xff00) | Unicode_JISX0201;
} else if (qstricmp(s, "unicode-ascii") == 0) {
} else if (tqstricmp(s, "unicode-ascii") == 0) {
rule = (rule & 0xff00) | Unicode_ASCII;
} else if (qstricmp(s, "jisx0221-1995") == 0) {
} else if (tqstricmp(s, "jisx0221-1995") == 0) {
rule = (rule & 0xff00) | JISX0221_JISX0201;
} else if ((qstricmp(s, "open-0201") == 0) ||
(qstricmp(s, "open-19970715-0201") == 0)) {
} else if ((tqstricmp(s, "open-0201") == 0) ||
(tqstricmp(s, "open-19970715-0201") == 0)) {
rule = (rule & 0xff00) | JISX0221_JISX0201;
} else if ((qstricmp(s, "open-ascii") == 0) ||
(qstricmp(s, "open-19970715-ascii") == 0)) {
} else if ((tqstricmp(s, "open-ascii") == 0) ||
(tqstricmp(s, "open-19970715-ascii") == 0)) {
rule = (rule & 0xff00) | JISX0221_ASCII;
} else if ((qstricmp(s, "open-ms") == 0) ||
(qstricmp(s, "open-19970715-ms") == 0)) {
} else if ((tqstricmp(s, "open-ms") == 0) ||
(tqstricmp(s, "open-19970715-ms") == 0)) {
rule = (rule & 0xff00) | Microsoft_CP932;
} else if (qstricmp(s, "cp932") == 0) {
} else if (tqstricmp(s, "cp932") == 0) {
rule = (rule & 0xff00) | Microsoft_CP932;
} else if (qstricmp(s, "jdk1.1.7") == 0) {
} else if (tqstricmp(s, "jdk1.1.7") == 0) {
rule = (rule & 0xff00) | Sun_JDK117;
} else if (qstricmp(s, "nec-vdc") == 0) {
} else if (tqstricmp(s, "nec-vdc") == 0) {
rule = rule | NEC_VDC;
} else if (qstricmp(s, "ibm-vdc") == 0) {
} else if (tqstricmp(s, "ibm-vdc") == 0) {
rule = rule | IBM_VDC;
} else if (qstricmp(s, "udc") == 0) {
} else if (tqstricmp(s, "udc") == 0) {
rule = rule | UDC;
}
}

@ -217,7 +217,7 @@ static QString reverseLine(const QString &str, unsigned int from, unsigned int t
case QChar::DirL:
if ( runDir != QChar::DirL && runDir != QChar::DirON ) {
out += run( str, from, pos, runDir );
qDebug( "out = %s", out.latin1() );
tqDebug( "out = %s", out.latin1() );
from = pos;
}
runDir = QChar::DirL;
@ -233,7 +233,7 @@ static QString reverseLine(const QString &str, unsigned int from, unsigned int t
case QChar::DirEN:
if ( runDir != QChar::DirR && runDir != QChar::DirON ) {
out += run( str, from, pos, runDir );
qDebug( "out = %s", out.latin1() );
tqDebug( "out = %s", out.latin1() );
from = pos;
}
runDir = QChar::DirR;
@ -243,7 +243,7 @@ static QString reverseLine(const QString &str, unsigned int from, unsigned int t
pos++;
}
out += run( str, from, pos, runDir );
qDebug( "out = %s", out.latin1() );
tqDebug( "out = %s", out.latin1() );
// second reversing for numbers
QString in = out;
out = "";
@ -259,7 +259,7 @@ static QString reverseLine(const QString &str, unsigned int from, unsigned int t
case QChar::DirR:
if ( runDir == QChar::DirEN && runDir != QChar::DirON ) {
out += run( in, from, pos, QChar::DirR ); //DirR ensures reversing
qDebug( "out = %s", out.latin1() );
tqDebug( "out = %s", out.latin1() );
runDir = QChar::DirR;
from = pos;
}
@ -269,7 +269,7 @@ static QString reverseLine(const QString &str, unsigned int from, unsigned int t
case QChar::DirEN:
if ( runDir != QChar::DirEN && runDir != QChar::DirON ) {
out += in.mid(from, pos-from+1);
qDebug( "out = %s", out.latin1() );
tqDebug( "out = %s", out.latin1() );
from = pos;
}
runDir = QChar::DirEN;
@ -437,7 +437,7 @@ static QString visualOrder(QString logical, QChar::Direction basicDir)
}
int i;
for (i = 0; i < nitems; ++i) {
//qDebug("item %d bidiLevel=%d", i, e.items[i].analysis.bidiLevel);
//tqDebug("item %d bidiLevel=%d", i, e.items[i].analysis.bidiLevel);
levels[i] = e.items[i].analysis.bidiLevel;
}
e.bidiReorder(nitems, levels, visualOrder);

@ -249,10 +249,10 @@ int QSjisCodec::heuristicNameMatch(const char* hint) const
{
int score = 0;
bool ja = FALSE;
if (qstrnicmp(hint, "ja_JP", 5) == 0 || qstrnicmp(hint, "japan", 5) == 0) {
if (tqstrnicmp(hint, "ja_JP", 5) == 0 || tqstrnicmp(hint, "japan", 5) == 0) {
score += 3;
ja = TRUE;
} else if (qstrnicmp(hint, "ja", 2) == 0) {
} else if (tqstrnicmp(hint, "ja", 2) == 0) {
score += 2;
ja = TRUE;
}
@ -267,9 +267,9 @@ int QSjisCodec::heuristicNameMatch(const char* hint) const
p = hint;
}
if (p) {
if ((qstricmp(p, "mscode") == 0) ||
(qstricmp(p, "PCK") == 0) ||
(qstricmp(p, "SJIS") == 0) ||
if ((tqstricmp(p, "mscode") == 0) ||
(tqstricmp(p, "PCK") == 0) ||
(tqstricmp(p, "SJIS") == 0) ||
(simpleHeuristicNameMatch(p, "ShiftJIS") > 0) ||
(simpleHeuristicNameMatch(p, "x-sjis") > 0)) {
return score + 4;

@ -443,7 +443,7 @@ QTextCodec::QTextCodec()
QTextCodec::~QTextCodec()
{
if ( !destroying_is_ok )
qWarning("QTextCodec::~QTextCodec() called by application");
tqWarning("QTextCodec::~QTextCodec() called by application");
if ( all )
all->remove( this );
}
@ -503,7 +503,7 @@ static QString lettersAndNumbers( const char * input )
int QTextCodec::simpleHeuristicNameMatch(const char* name, const char* hint)
{
// if they're the same, return a perfect score.
if ( name && hint && *name && *hint && qstricmp( name, hint ) == 0 )
if ( name && hint && *name && *hint && tqstricmp( name, hint ) == 0 )
return qstrlen( hint );
// if the letters and numbers are the same, we have an "almost"
@ -667,7 +667,7 @@ public:
// character
buf[nbuf++] = *chars;
if (nbuf + 1 == sizeof buf) {
qWarning("QWindowsLocalDecoder: exceeded max internal buffer size");
tqWarning("QWindowsLocalDecoder: exceeded max internal buffer size");
nbuf = 0;
}
}
@ -793,7 +793,7 @@ static QTextCodec * ru_RU_hack( const char * i ) {
} else {
// something else again... let's assume... *throws dice*
ru_RU_codec = QTextCodec::codecForName( "KOI8-R" );
qWarning( "QTextCodec: using KOI8-R, probe failed (%02x %02x %s)",
tqWarning( "QTextCodec: using KOI8-R, probe failed (%02x %02x %s)",
koi8r, latin5, i );
}
setlocale( LC_CTYPE, origlocale.data() );
@ -1297,15 +1297,15 @@ public:
char comm='%';
bool incmap = FALSE;
while (iod->readLine(line,maxlen) > 0) {
if (0==qstrnicmp(line,"<code_set_name>",15))
if (0==tqstrnicmp(line,"<code_set_name>",15))
n = line+15;
else if (0==qstrnicmp(line,"<escape_char> ",14))
else if (0==tqstrnicmp(line,"<escape_char> ",14))
esc = line[14];
else if (0==qstrnicmp(line,"<comment_char> ",15))
else if (0==tqstrnicmp(line,"<comment_char> ",15))
comm = line[15];
else if (line[0]==comm && 0==qstrnicmp(line+1," alias ",7)) {
else if (line[0]==comm && 0==tqstrnicmp(line+1," alias ",7)) {
aliases.append(line+8);
} else if (0==qstrnicmp(line,"CHARMAP",7)) {
} else if (0==tqstrnicmp(line,"CHARMAP",7)) {
if (!from_unicode_page) {
from_unicode_page = new char*[256];
for (int i=0; i<256; i++)
@ -1315,7 +1315,7 @@ public:
to_unicode = new ushort[256];
}
incmap = TRUE;
} else if (0==qstrnicmp(line,"END CHARMAP",11))
} else if (0==tqstrnicmp(line,"END CHARMAP",11))
break;
else if (incmap) {
char* cursor = line;
@ -1395,7 +1395,7 @@ public:
}
mb[nmb++] = 0;
from_unicode_page_multiByte[ch.row()][ch.cell()]
= qstrdup(mb);
= tqstrdup(mb);
*mb_unicode = unicode;
} else {
from_unicode_page[ch.row()][ch.cell()] = (char)byte;
@ -2442,7 +2442,7 @@ int QSimpleTextCodec::mibEnum() const
int QSimpleTextCodec::heuristicNameMatch(const char* hint) const
{
if ( qstricmp( hint, mimeName() ) == 0 )
if ( tqstricmp( hint, mimeName() ) == 0 )
return 10000; // return a large value
if ( hint[0]=='k' ) {
QCString lhint = QCString(hint).lower();
@ -2802,18 +2802,18 @@ static void setupLocaleMapper()
// First part is getting that locale name. First try setlocale() which
// definitely knows it, but since we cannot fully trust it, get ready
// to fall back to environment variables.
char * ctype = qstrdup( setlocale( LC_CTYPE, 0 ) );
char * ctype = tqstrdup( setlocale( LC_CTYPE, 0 ) );
// Get the first nonempty value from $LC_ALL, $LC_CTYPE, and $LANG
// environment variables.
char * lang = qstrdup( getenv("LC_ALL") );
char * lang = tqstrdup( getenv("LC_ALL") );
if ( !lang || lang[0] == 0 || strcmp( lang, "C" ) == 0 ) {
if ( lang ) delete [] lang;
lang = qstrdup( getenv("LC_CTYPE") );
lang = tqstrdup( getenv("LC_CTYPE") );
}
if ( !lang || lang[0] == 0 || strcmp( lang, "C" ) == 0 ) {
if ( lang ) delete [] lang;
lang = qstrdup( getenv("LANG") );
lang = tqstrdup( getenv("LANG") );
}
// Now try these in order:
@ -2905,7 +2905,7 @@ static void realSetup()
{
#if defined(QT_CHECK_STATE)
if ( destroying_is_ok )
qWarning( "QTextCodec: creating new codec during codec cleanup!" );
tqWarning( "QTextCodec: creating new codec during codec cleanup!" );
#endif
all = new QValueList<QTextCodec*>;

@ -183,7 +183,7 @@ int QTsciiCodec::heuristicNameMatch(const char* hint) const
p++;
else
p = hint;
if (qstricmp(p, "TSCII") == 0)
if (tqstricmp(p, "TSCII") == 0)
return 4;
return QTextCodec::heuristicNameMatch(hint);
}

@ -366,7 +366,7 @@ void QWellArray::setCellBrush( int row, int col, const QBrush &b )
d->brush[row*numCols()+col] = b;
#ifdef QT_CHECK_RANGE
else
qWarning( "QWellArray::setCellBrush( %d, %d ) out of range", row, col );
tqWarning( "QWellArray::setCellBrush( %d, %d ) out of range", row, col );
#endif
}
@ -471,7 +471,7 @@ QRgb QColorDialog::customColor( int i )
initRGB();
if ( i < 0 || i >= customCount() ) {
#ifdef QT_CHECK_RANGE
qWarning( "QColorDialog::customColor() index %d out of range", i );
tqWarning( "QColorDialog::customColor() index %d out of range", i );
#endif
i = 0;
}
@ -486,7 +486,7 @@ void QColorDialog::setCustomColor( int i, QRgb c )
initRGB();
if ( i < 0 || i >= customCount() ) {
#ifdef QT_CHECK_RANGE
qWarning( "QColorDialog::setCustomColor() index %d out of range", i );
tqWarning( "QColorDialog::setCustomColor() index %d out of range", i );
#endif
return;
}
@ -503,7 +503,7 @@ void QColorDialog::setStandardColor( int i, QRgb c )
initRGB();
if ( i < 0 || i >= 6*8 ) {
#ifdef QT_CHECK_RANGE
qWarning( "QColorDialog::setStandardColor() index %d out of range", i );
tqWarning( "QColorDialog::setStandardColor() index %d out of range", i );
#endif
return;
}

@ -418,7 +418,7 @@ void QDialog::hideSpecial()
int QDialog::exec()
{
if ( in_loop ) {
qWarning( "QDialog::exec: Recursive call detected" );
tqWarning( "QDialog::exec: Recursive call detected" );
return -1;
}

@ -95,7 +95,7 @@ message() slot, or connect signals to it.
\i For developers. In this context the static qtHandler() installs
a message handler using qInstallMsgHandler() and creates a QErrorMessage
that displays qDebug(), qWarning() and qFatal() messages.
that displays tqDebug(), tqWarning() and tqFatal() messages.
\endlist
In both cases QErrorMessage will queue pending messages, and display
@ -224,7 +224,7 @@ QErrorMessage * QErrorMessage::qtHandler()
{
if ( !qtMessageHandler ) {
qtMessageHandler = new QErrorMessage( 0, "automatic message handler" );
qAddPostRoutine( deleteStaticcQErrorMessage ); // clean up
tqAddPostRoutine( deleteStaticcQErrorMessage ); // clean up
#ifndef QT_NO_WIDGET_TOPEXTRA
if ( qApp->mainWidget() )
qtMessageHandler->setCaption( qApp->mainWidget()->caption() );

@ -231,7 +231,7 @@ void QInputDialog::setType( Type t )
break;
default:
#if defined(QT_CHECK_STATE)
qWarning( "QInputDialog::setType: Invalid type" );
tqWarning( "QInputDialog::setType: Invalid type" );
#endif
break;
}

@ -614,7 +614,7 @@ void QMessageBox::init( int button0, int button1, int button2 )
if ( (button2 && !button1) || (button1 && !button0) ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QMessageBox: Inconsistent button parameters" );
tqWarning( "QMessageBox: Inconsistent button parameters" );
#endif
button0 = button1 = button2 = 0;
}
@ -634,7 +634,7 @@ void QMessageBox::init( int button0, int button1, int button2 )
if ( (b & Default) ) {
if ( mbd->defButton >= 0 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QMessageBox: There can be at most one "
tqWarning( "QMessageBox: There can be at most one "
"default button" );
#endif
} else {
@ -644,7 +644,7 @@ void QMessageBox::init( int button0, int button1, int button2 )
if ( (b & Escape) ) {
if ( mbd->escButton >= 0 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QMessageBox: There can be at most one "
tqWarning( "QMessageBox: There can be at most one "
"escape button" );
#endif
} else {
@ -657,13 +657,13 @@ void QMessageBox::init( int button0, int button1, int button2 )
b = Ok;
} else if ( b < 0 || b > LastButton ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QMessageBox: Invalid button specifier" );
tqWarning( "QMessageBox: Invalid button specifier" );
#endif
b = Ok;
} else {
if ( i > 0 && mbd->button[i-1] == 0 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QMessageBox: Inconsistent button parameters; "
tqWarning( "QMessageBox: Inconsistent button parameters; "
"button %d defined but not button %d",
i+1, i );
#endif

@ -209,13 +209,13 @@ private: // Disabled copy constructor and operator=
* }
*/
#define QT_REQUIRE_VERSION( argc, argv, str ) { QString s=QString::fromLatin1(str);\
QString sq=QString::fromLatin1(qVersion()); if ( (sq.section('.',0,0).toInt()<<16)+\
QString sq=QString::fromLatin1(tqVersion()); if ( (sq.section('.',0,0).toInt()<<16)+\
(sq.section('.',1,1).toInt()<<8)+sq.section('.',2,2).toInt()<(s.section('.',0,0).toInt()<<16)+\
(s.section('.',1,1).toInt()<<8)+s.section('.',2,2).toInt() ){if ( !qApp){ int c=0; new \
QApplication(argc,argv);} QString s = QApplication::tr("Executable '%1' requires Qt "\
"%2, found Qt %3.").arg(QString::fromLatin1(qAppName())).arg(QString::fromLatin1(\
str)).arg(QString::fromLatin1(qVersion()) ); QMessageBox::critical( 0, QApplication::tr(\
"Incompatible Qt Library Error" ), s, QMessageBox::Abort,0 ); qFatal(s.ascii()); }}
str)).arg(QString::fromLatin1(tqVersion()) ); QMessageBox::critical( 0, QApplication::tr(\
"Incompatible Qt Library Error" ), s, QMessageBox::Abort,0 ); tqFatal(s.ascii()); }}
#endif // QT_NO_MESSAGEBOX

@ -404,7 +404,7 @@ static char * parsePrintersConf( QListView * printers, bool *found = 0 )
j++;
// that's our default printer
defaultPrinter =
qstrdup( printerDesc.mid( i, j-i ).ascii() );
tqstrdup( printerDesc.mid( i, j-i ).ascii() );
printerName = "";
printerDesc = "";
} else if ( printerName == QString::fromLatin1("_all") ) {
@ -807,7 +807,7 @@ static char * parseCupsOutput( QListView * printers )
perhapsAddPrinter( printers, d[n].name,
QPrintDialog::tr("Unknown Location"), 0 );
if ( d[n].is_default && !defaultPrinter )
defaultPrinter = qstrdup( d[n].instance );
defaultPrinter = tqstrdup( d[n].instance );
n++;
}
}
@ -977,7 +977,7 @@ void QPrintDialog::setGlobalPrintDialog( QPrintDialog *pd )
if ( oldPd )
delete oldPd;
else
qAddPostRoutine( qpd_cleanup_globaldialog );
tqAddPostRoutine( qpd_cleanup_globaldialog );
globalPrintDialog->adjustSize();
}
@ -1375,7 +1375,7 @@ bool QPrintDialog::getPrinterSetup( QPrinter * p, QWidget* w )
#ifndef QT_NO_WIDGET_TOPEXTRA
globalPrintDialog->setCaption( QPrintDialog::tr( "Setup Printer" ) );
#endif
qAddPostRoutine( qpd_cleanup_globaldialog );
tqAddPostRoutine( qpd_cleanup_globaldialog );
globalPrintDialog->setPrinter( p, TRUE );
globalPrintDialog->adjustSize();
} else {

@ -456,7 +456,7 @@ void QProgressDialog::setBar( QProgressBar *bar )
{
if ( progress() > 0 ) {
#if defined(QT_CHECK_STATE)
qWarning( "QProgrssDialog::setBar: Cannot set a new progress bar "
tqWarning( "QProgrssDialog::setBar: Cannot set a new progress bar "
"while the old one is active" );
#endif
}

@ -264,7 +264,7 @@ void QWizard::addPage( QWidget * page, const QString & title )
return;
if ( d->page( page ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QWizard::addPage(): already added %s/%s to %s/%s",
tqWarning( "QWizard::addPage(): already added %s/%s to %s/%s",
page->className(), page->name(),
className(), name() );
#endif
@ -293,7 +293,7 @@ void QWizard::insertPage( QWidget * page, const QString & title, int index )
return;
if ( d->page( page ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QWizard::insertPage(): already added %s/%s to %s/%s",
tqWarning( "QWizard::insertPage(): already added %s/%s to %s/%s",
page->className(), page->name(),
className(), name() );
#endif

@ -6223,7 +6223,7 @@ void QIconView::updateItemContainer( QIconViewItem *item )
if ( !c ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QIconViewItem::updateItemContainer(): No fitting container found!" );
tqWarning( "QIconViewItem::updateItemContainer(): No fitting container found!" );
#endif
return;
}

@ -606,7 +606,7 @@ QLayout::QLayout( QWidget *parent, int margin, int spacing, const char *name )
init();
if ( parent ) {
if ( parent->layout() ) {
qWarning( "QLayout \"%s\" added to %s \"%s\", which already has a"
tqWarning( "QLayout \"%s\" added to %s \"%s\", which already has a"
" layout", QObject::name(), parent->className(),
parent->name() );
parent->removeChild( this );
@ -1063,7 +1063,7 @@ void QLayout::addChildLayout( QLayout *l )
{
if ( l->parent() ) {
#if defined(QT_CHECK_NULL)
qWarning( "QLayout::addChildLayout: layout already has a parent" );
tqWarning( "QLayout::addChildLayout: layout already has a parent" );
#endif
return;
}
@ -1189,7 +1189,7 @@ bool QLayout::activate()
QWidget *mw = mainWidget();
if (!mw) {
#if defined( QT_CHECK_NULL )
qWarning( "QLayout::activate: %s \"%s\" does not have a main widget",
tqWarning( "QLayout::activate: %s \"%s\" does not have a main widget",
QObject::className(), QObject::name() );
#endif
return FALSE;

@ -576,7 +576,7 @@ QAccel::QAccel( QWidget *parent, const char *name )
d->watch = parent;
#if defined(QT_CHECK_NULL)
if ( !d->watch )
qWarning( "QAccel: An accelerator must have a parent or a watch widget" );
tqWarning( "QAccel: An accelerator must have a parent or a watch widget" );
#endif
}
@ -594,7 +594,7 @@ QAccel::QAccel( QWidget* watch, QObject *parent, const char *name )
d->watch = watch;
#if defined(QT_CHECK_NULL)
if ( !d->watch )
qWarning( "QAccel: An accelerator must have a parent or a watch widget" );
tqWarning( "QAccel: An accelerator must have a parent or a watch widget" );
#endif
}

@ -385,7 +385,7 @@ QRESULT QAccessible::queryAccessibleInterface( QObject *object, QAccessibleInter
if ( !qAccessibleManager ) {
qAccessibleManager = new QPluginManager<QAccessibleFactoryInterface>( IID_QAccessibleFactory, QApplication::libraryPaths(), "/accessible" );
if ( !cleanupAdded ) {
qAddPostRoutine( qAccessibleCleanup );
tqAddPostRoutine( qAccessibleCleanup );
cleanupAdded = TRUE;
}
}
@ -652,7 +652,7 @@ QAccessibleObject::QAccessibleObject( QObject *object )
if ( !qAccessibleInterface ) {
qAccessibleInterface = new AccessibleCache;
if ( !cleanupAdded ) {
qAddPostRoutine( qAccessibleCleanup );
tqAddPostRoutine( qAccessibleCleanup );
cleanupAdded = TRUE;
}
}
@ -703,7 +703,7 @@ QObject *QAccessibleObject::object() const
{
#if defined(QT_CHECK_RANGE)
if ( !isValid() )
qWarning( "QAccessibleInterface is invalid. Crash pending..." );
tqWarning( "QAccessibleInterface is invalid. Crash pending..." );
#endif
return object_;
}

@ -438,12 +438,12 @@ static QVFuncList *postRList = 0; // list of post routines
void init_ptr()
{
global_ptr = new int[100]; // allocate data
qAddPostRoutine( cleanup_ptr ); // delete later
tqAddPostRoutine( cleanup_ptr ); // delete later
}
\endcode
Note that for an application- or module-wide cleanup,
qAddPostRoutine() is often not suitable. People have a tendency to
tqAddPostRoutine() is often not suitable. People have a tendency to
make such modules dynamically loaded, and then unload those modules
long before the QApplication destructor is called, for example.
@ -477,7 +477,7 @@ static QVFuncList *postRList = 0; // list of post routines
to clean up the module's data at the exact right moment.
*/
Q_EXPORT void qAddPostRoutine( QtCleanUpFunction p)
Q_EXPORT void tqAddPostRoutine( QtCleanUpFunction p)
{
if ( !postRList ) {
postRList = new QVFuncList;
@ -487,7 +487,7 @@ Q_EXPORT void qAddPostRoutine( QtCleanUpFunction p)
}
Q_EXPORT void qRemovePostRoutine( QtCleanUpFunction p )
Q_EXPORT void tqRemovePostRoutine( QtCleanUpFunction p )
{
if ( !postRList ) return;
QVFuncList::Iterator it = postRList->begin();
@ -862,7 +862,7 @@ QApplication::QApplication( Display* dpy, HANDLE visual, HANDLE colormap )
if ( ! dpy ) {
#ifdef QT_CHECK_STATE
qWarning( "QApplication: invalid Display* argument." );
tqWarning( "QApplication: invalid Display* argument." );
#endif // QT_CHECK_STATE
qt_init( &aargc, aargv, GuiClient );
@ -903,7 +903,7 @@ QApplication::QApplication(Display *dpy, int argc, char **argv,
if ( ! dpy ) {
#ifdef QT_CHECK_STATE
qWarning( "QApplication: invalid Display* argument." );
tqWarning( "QApplication: invalid Display* argument." );
#endif // QT_CHECK_STATE
qt_init( &argc, argv, GuiClient );
@ -933,7 +933,7 @@ void QApplication::init_precmdline()
#endif
#if defined(QT_CHECK_STATE)
if ( qApp )
qWarning( "QApplication: There should be max one application object" );
tqWarning( "QApplication: There should be max one application object" );
#endif
qApp = (QApplication*)this;
}
@ -1106,7 +1106,7 @@ QApplication::~QApplication()
is_app_running = FALSE;
if ( widgetCount ) {
qDebug( "Widgets left: %i Max widgets: %i \n", QWidget::instanceCounter, QWidget::maxInstances );
tqDebug( "Widgets left: %i Max widgets: %i \n", QWidget::instanceCounter, QWidget::maxInstances );
}
#ifndef QT_NO_SESSIONMANAGER
delete session_manager;
@ -1214,7 +1214,7 @@ QStyle& QApplication::style()
if ( app_style )
return *app_style;
if ( !qt_is_gui_used )
qFatal( "No style available in non-gui applications!" );
tqFatal( "No style available in non-gui applications!" );
#if defined(Q_WS_X11)
if(!qt_style_override)
@ -1262,7 +1262,7 @@ QStyle& QApplication::style()
&& !(app_style = QStyleFactory::create( QStyleFactory::keys()[0] ) )
#endif
)
qFatal( "No %s style available!", style.latin1() );
tqFatal( "No %s style available!", style.latin1() );
}
QPalette app_pal_copy ( *app_pal );
@ -1500,7 +1500,7 @@ void QApplication::setColorSpec( int spec )
{
#if defined(QT_CHECK_STATE)
if ( qApp ) {
qWarning( "QApplication::setColorSpec: This function must be "
tqWarning( "QApplication::setColorSpec: This function must be "
"called before the QApplication object is created" );
}
#endif
@ -1723,7 +1723,7 @@ QStringList QApplication::libraryPaths()
{
if ( !app_libpaths ) {
app_libpaths = new QStringList;
QString installPathPlugins = QString::fromLocal8Bit(qInstallPathPlugins());
QString installPathPlugins = QString::fromLocal8Bit(tqInstallPathPlugins());
if ( QFile::exists(installPathPlugins) ) {
#ifdef Q_WS_WIN
installPathPlugins.replace('\\', '/');
@ -1742,7 +1742,7 @@ QStringList QApplication::libraryPaths()
#endif
if (!app_location.isEmpty()) {
app_location.truncate( app_location.findRev( '/' ) );
if ( app_location != qInstallPathPlugins() && QFile::exists( app_location ) )
if ( app_location != tqInstallPathPlugins() && QFile::exists( app_location ) )
app_libpaths->append( app_location );
}
}
@ -1822,7 +1822,7 @@ QPalette QApplication::palette(const QWidget* w)
{
#if defined(QT_CHECK_STATE)
if ( !qApp )
qWarning( "QApplication::palette: This function can only be "
tqWarning( "QApplication::palette: This function can only be "
"called after the QApplication object has been created" );
#endif
if ( !app_pal ) {
@ -2319,7 +2319,7 @@ bool QApplication::notify( QObject *receiver, QEvent *e )
if ( receiver == 0 ) { // serious error
#if defined(QT_CHECK_NULL)
qWarning( "QApplication::notify: Unexpected null receiver" );
tqWarning( "QApplication::notify: Unexpected null receiver" );
#endif
return FALSE;
}
@ -3098,7 +3098,7 @@ void QApplication::postEvent( QObject *receiver, QEvent *event )
{
if ( receiver == 0 ) {
#if defined(QT_CHECK_NULL)
qWarning( "QApplication::postEvent: Unexpected null receiver" );
tqWarning( "QApplication::postEvent: Unexpected null receiver" );
#endif
delete event;
return;
@ -3412,7 +3412,7 @@ void QApplication::removePostedEvent( QEvent * event )
if ( !globalPostedEvents ) {
#if defined(QT_DEBUG)
qDebug( "QApplication::removePostedEvent: %p %d is posted: impossible",
tqDebug( "QApplication::removePostedEvent: %p %d is posted: impossible",
(void*)event, event->type() );
return;
#endif
@ -3493,7 +3493,7 @@ void QApplication::removePostedEvent( QEvent * event )
n = "<other>";
break;
}
qWarning("QEvent: Warning: %s event deleted while posted to %s %s",
tqWarning("QEvent: Warning: %s event deleted while posted to %s %s",
n,
pe->receiver ? pe->receiver->className() : "null",
pe->receiver ? pe->receiver->name() : "object" );

@ -131,7 +131,7 @@ extern "C" Bool XftInitFtLibrary(void);
extern "C" char *_Xsetlocale(int category, const char *locale);
char *_Xsetlocale(int category, const char *locale)
{
//qDebug("_Xsetlocale(%d,%s),category,locale");
//tqDebug("_Xsetlocale(%d,%s),category,locale");
return setlocale(category,locale);
}
# endif // setlocale
@ -520,7 +520,7 @@ void qt_deferred_map_add( QWidget* w)
{
if ( !deferred_map_list ) {
deferred_map_list = new QPtrList<QWidget>;
qAddPostRoutine( qt_deferred_map_cleanup );
tqAddPostRoutine( qt_deferred_map_cleanup );
}
deferred_map_list->append( w );
}
@ -788,7 +788,7 @@ static int qt_x_errhandler( Display *dpy, XErrorEvent *err )
char errstr[256];
XGetErrorText( dpy, err->error_code, errstr, 256 );
qWarning( "X Error: %s %d\n"
tqWarning( "X Error: %s %d\n"
" Major opcode: %d\n"
" Minor opcode: %d\n"
" Resource id: 0x%lx",
@ -806,7 +806,7 @@ static int qt_x_errhandler( Display *dpy, XErrorEvent *err )
static int qt_xio_errhandler( Display * )
{
qWarning( "%s: Fatal IO error: client killed", appName );
tqWarning( "%s: Fatal IO error: client killed", appName );
qApp = 0;
exit( 1 );
//### give the application a chance for a proper shutdown instead,
@ -866,7 +866,7 @@ static void qt_x11_process_intern_atoms()
while( it.current() ) {
res[i] = 0;
resp[i] = it.current();
names[i] = qstrdup(it.currentKey());
names[i] = tqstrdup(it.currentKey());
i++;
++it;
}
@ -1184,7 +1184,7 @@ static void qt_set_input_encoding()
qt_input_mapper = QTextCodec::codecForLocale();
} else {
if ( !qstricmp( data, "locale" ) )
if ( !tqstricmp( data, "locale" ) )
qt_input_mapper = QTextCodec::codecForLocale();
else
qt_input_mapper = QTextCodec::codecForName( data );
@ -1658,11 +1658,11 @@ void qt_init_internal( int *argcptr, char **argv,
appDpy = display;
// Set application name and class
appName = qstrdup( "Qt-subapplication" );
appName = tqstrdup( "Qt-subapplication" );
char *app_class = 0;
if (argv) {
const char* p = strrchr( argv[0], '/' );
app_class = qstrdup(p ? p + 1 : argv[0]);
app_class = tqstrdup(p ? p + 1 : argv[0]);
if (app_class[0])
app_class[0] = toupper(app_class[0]);
}
@ -1686,7 +1686,7 @@ void qt_init_internal( int *argcptr, char **argv,
if (argv) {
const char *p = strrchr( argv[0], '/' );
appName = p ? p + 1 : argv[0];
app_class = qstrdup(appName);
app_class = tqstrdup(appName);
if (app_class[0])
app_class[0] = toupper(app_class[0]);
}
@ -1795,7 +1795,7 @@ void qt_init_internal( int *argcptr, char **argv,
}
if ( s == "gdb" ) {
appNoGrab = TRUE;
qDebug( "Qt: gdb: -nograb added to command-line options.\n"
tqDebug( "Qt: gdb: -nograb added to command-line options.\n"
"\t Use the -dograb option to enforce grabbing." );
}
f.close();
@ -1806,7 +1806,7 @@ void qt_init_internal( int *argcptr, char **argv,
if( qt_is_gui_used ) {
if ( ( appDpy = XOpenDisplay(appDpyName) ) == 0 ) {
qWarning( "%s: cannot connect to X server %s", appName,
tqWarning( "%s: cannot connect to X server %s", appName,
XDisplayName(appDpyName) );
qApp = 0;
exit( 1 );
@ -2272,7 +2272,7 @@ void qt_init_internal( int *argcptr, char **argv,
devices = XListInputDevices( appDpy, &ndev);
if ( devices == NULL ) {
qWarning( "Failed to get list of devices" );
tqWarning( "Failed to get list of devices" );
ndev = -1;
}
dev = NULL;
@ -2305,7 +2305,7 @@ void qt_init_internal( int *argcptr, char **argv,
ev_class = event_list_eraser;
}
if ( dev == NULL ) {
qWarning( "Failed to open device" );
tqWarning( "Failed to open device" );
} else {
if ( dev->num_classes > 0 ) {
for ( ip = dev->classes, j = 0; j < devs->num_classes;
@ -2689,7 +2689,7 @@ static GC create_gc( int scrn, bool monochrome )
GC qt_xget_readonly_gc( int scrn, bool monochrome ) // get read-only GC
{
if ( scrn < 0 || scrn >= appScreenCount ) {
qDebug("invalid screen %d %d", scrn, appScreenCount );
tqDebug("invalid screen %d %d", scrn, appScreenCount );
QWidget* bla = 0;
bla->setName("hello");
}
@ -2713,7 +2713,7 @@ GC qt_xget_readonly_gc( int scrn, bool monochrome ) // get read-only GC
GC qt_xget_temp_gc( int scrn, bool monochrome ) // get temporary GC
{
if ( scrn < 0 || scrn >= appScreenCount ) {
qDebug("invalid screen (tmp) %d %d", scrn, appScreenCount );
tqDebug("invalid screen (tmp) %d %d", scrn, appScreenCount );
QWidget* bla = 0;
bla->setName("hello");
}
@ -2773,7 +2773,7 @@ void QApplication::setMainWidget( QWidget *mainWidget )
#if defined(QT_CHECK_STATE)
if ( mainWidget && mainWidget->parentWidget() &&
! mainWidget->parentWidget()->isDesktop() )
qWarning( "QApplication::setMainWidget(): New main widget (%s/%s) "
tqWarning( "QApplication::setMainWidget(): New main widget (%s/%s) "
"has a parent!",
mainWidget->className(), mainWidget->name() );
#endif
@ -3567,7 +3567,7 @@ int QApplication::x11ProcessEvent( XEvent* event )
case XKeyRelease:
{
if ( keywidget && keywidget->isEnabled() ) { // should always exist
// qDebug( "sending key event" );
// tqDebug( "sending key event" );
keywidget->translateKeyEvent( event, grabbed );
}
break;
@ -4474,22 +4474,22 @@ bool QETWidget::translateXinputEvent( const XEvent *ev )
}
button = (XDeviceButtonEvent*)ev;
/*
qDebug( "\n\nXInput Button Event" );
qDebug( "serial:\t%d", button->serial );
qDebug( "send_event:\t%d", button->send_event );
qDebug( "display:\t%p", button->display );
qDebug( "window:\t%d", button->window );
qDebug( "deviceID:\t%d", button->deviceid );
qDebug( "root:\t%d", button->root );
qDebug( "subwindot:\t%d", button->subwindow );
qDebug( "x:\t%d", button->x );
qDebug( "y:\t%d", button->y );
qDebug( "x_root:\t%d", button->x_root );
qDebug( "y_root:\t%d", button->y_root );
qDebug( "state:\t%d", button->state );
qDebug( "button:\t%d", button->button );
qDebug( "same_screen:\t%d", button->same_screen );
qDebug( "time:\t%d", button->time );
tqDebug( "\n\nXInput Button Event" );
tqDebug( "serial:\t%d", button->serial );
tqDebug( "send_event:\t%d", button->send_event );
tqDebug( "display:\t%p", button->display );
tqDebug( "window:\t%d", button->window );
tqDebug( "deviceID:\t%d", button->deviceid );
tqDebug( "root:\t%d", button->root );
tqDebug( "subwindot:\t%d", button->subwindow );
tqDebug( "x:\t%d", button->x );
tqDebug( "y:\t%d", button->y );
tqDebug( "x_root:\t%d", button->x_root );
tqDebug( "y_root:\t%d", button->y_root );
tqDebug( "state:\t%d", button->state );
tqDebug( "button:\t%d", button->button );
tqDebug( "same_screen:\t%d", button->same_screen );
tqDebug( "time:\t%d", button->time );
*/
curr = QPoint( button->x, button->y );
}
@ -5181,7 +5181,7 @@ bool QETWidget::translateKeyEventInternal( const XEvent *event, int& count,
keyDict->setAutoDelete( FALSE );
textDict = new QIntDict<void>( 13 );
textDict->setAutoDelete( FALSE );
qAddPostRoutine( deleteKeyDicts );
tqAddPostRoutine( deleteKeyDicts );
}
QWidget* tlw = topLevelWidget();
@ -6375,7 +6375,7 @@ static void sm_performSaveYourself( QSessionManagerData* smd )
// generate a restart and discard command that makes sense
QStringList restart;
restart << qApp->argv()[0] << "-session" << smd->sessionId + "_" + smd->sessionKey;
if (qstricmp(qAppName(), qAppClass()) != 0)
if (tqstricmp(qAppName(), qAppClass()) != 0)
restart << "-name" << qAppName();
sm->setRestartCommand( restart );
QStringList discard;
@ -6524,7 +6524,7 @@ QSessionManager::QSessionManager( QApplication * app, QString &id, QString& key
QString error = cerror;
if (!smcConnection ) {
qWarning("Session management error: %s", error.latin1() );
tqWarning("Session management error: %s", error.latin1() );
}
else {
sm_receiver = new QSmSocketReceiver( IceConnectionNumber( SmcGetIceConnection( smcConnection ) ) );

@ -304,7 +304,7 @@ public:
gif_decoder_factory = new QGIFFormatType;
#endif
qt_init_image_handlers();
qAddPostRoutine( cleanup );
tqAddPostRoutine( cleanup );
}
}
@ -438,7 +438,7 @@ QImageFormatType* QImageDecoder::format( const char* name )
f;
f = QImageDecoderPrivate::factories->next())
{
if ( qstricmp(name,f->formatName())==0 )
if ( tqstricmp(name,f->formatName())==0 )
return f;
}
return 0;

@ -187,7 +187,7 @@ bool QDataSource::rewindable() const
is TRUE, then the data source must take measures to allow the rewind()
function to subsequently operate as described. If rewindable() is FALSE,
the function should call QDataSource::enableRewind(), which aborts with
a qFatal() error.
a tqFatal() error.
For example, a network connection may choose to use a disk cache
of input only if rewinding is enabled before the first buffer-full of
@ -196,7 +196,7 @@ bool QDataSource::rewindable() const
*/
void QDataSource::enableRewind( bool /* on */ )
{
qFatal( "Attempted to make unrewindable QDataSource rewindable" );
tqFatal( "Attempted to make unrewindable QDataSource rewindable" );
}
/*!
@ -205,7 +205,7 @@ void QDataSource::enableRewind( bool /* on */ )
*/
void QDataSource::rewind()
{
qFatal("Attempted to rewind unrewindable QDataSource");
tqFatal("Attempted to rewind unrewindable QDataSource");
}
/*!

@ -72,7 +72,7 @@
// Copy text from the clipboard (paste)
QString text = cb->text(QClipboard::Clipboard);
if ( !text.isNull() )
qDebug( "The clipboard contains: " + text );
tqDebug( "The clipboard contains: " + text );
// Copy text into the clipboard
cb->setText( "This text can be pasted by other programs",

@ -42,15 +42,15 @@
// #define QCLIPBOARD_DEBUG_VERBOSE
#ifdef QCLIPBOARD_DEBUG
# define QDEBUG qDebug
# define QDEBUG tqDebug
#else
# define QDEBUG if (FALSE) qDebug
# define QDEBUG if (FALSE) tqDebug
#endif
#ifdef QCLIPBOARD_DEBUG_VERBOSE
# define VQDEBUG qDebug
# define VQDEBUG tqDebug
#else
# define VQDEBUG if (FALSE) qDebug
# define VQDEBUG if (FALSE) tqDebug
#endif
#include "qplatformdefs.h"
@ -140,7 +140,7 @@ void setupOwner()
return;
owner = new QWidget( 0, "internal clipboard owner" );
requestor = new QWidget(0, "internal clipboard requestor");
qAddPostRoutine( cleanup );
tqAddPostRoutine( cleanup );
}
static
@ -239,7 +239,7 @@ static QClipboardData *clipboardData()
if ( internalCbData == 0 ) {
internalCbData = new QClipboardData;
Q_CHECK_PTR( internalCbData );
qAddPostRoutine( cleanupClipboardData );
tqAddPostRoutine( cleanupClipboardData );
}
return internalCbData;
}
@ -261,7 +261,7 @@ static QClipboardData *selectionData()
if (internalSelData == 0) {
internalSelData = new QClipboardData;
Q_CHECK_PTR(internalSelData);
qAddPostRoutine(cleanupSelectionData);
tqAddPostRoutine(cleanupSelectionData);
}
return internalSelData;
}
@ -306,7 +306,7 @@ static int qt_xclb_transation_event_handler(XEvent *event)
*/
static void qt_xclb_incr_timeout(void)
{
qWarning("QClipboard: timed out while sending data");
tqWarning("QClipboard: timed out while sending data");
while (transactions)
delete *transactions->begin();
@ -482,7 +482,7 @@ bool qt_xclb_wait_for_event( Display *dpy, Window win, int type, XEvent *event,
if (qApp->eventLoop()->inherits("QMotif")) { // yes yes, evil hack, we know
if ( waiting_for_data )
qFatal( "QClipboard: internal error, qt_xclb_wait_for_event recursed" );
tqFatal( "QClipboard: internal error, qt_xclb_wait_for_event recursed" );
waiting_for_data = TRUE;
has_captured_event = FALSE;
@ -1061,7 +1061,7 @@ bool QClipboard::event( QEvent *e )
}
} else {
#ifdef QT_CHECK_STATE
qWarning("QClipboard: Unknown SelectionClear event received.");
tqWarning("QClipboard: Unknown SelectionClear event received.");
#endif
return FALSE;
}
@ -1110,7 +1110,7 @@ bool QClipboard::event( QEvent *e )
d = clipboardData();
} else {
#ifdef QT_CHECK_RANGE
qWarning("QClipboard: unknown selection '%lx'", req->selection);
tqWarning("QClipboard: unknown selection '%lx'", req->selection);
#endif // QT_CHECK_RANGE
XSendEvent(dpy, req->requestor, False, NoEventMask, &event);
@ -1119,7 +1119,7 @@ bool QClipboard::event( QEvent *e )
if (! d->source()) {
#ifdef QT_CHECK_STATE
qWarning("QClipboard: cannot transfer data, no data available");
tqWarning("QClipboard: cannot transfer data, no data available");
#endif // QT_CHECK_STATE
XSendEvent(dpy, req->requestor, False, NoEventMask, &event);
@ -1190,7 +1190,7 @@ bool QClipboard::event( QEvent *e )
} else {
#ifdef QT_CHECK_STATE
qWarning("QClipboard: invalid data timestamp");
tqWarning("QClipboard: invalid data timestamp");
#endif // QT_CHECK_STATE
}
} else if (target == xa_targets) {
@ -1262,7 +1262,7 @@ QClipboardWatcher::QClipboardWatcher( QClipboard::Mode mode )
#ifdef QT_CHECK_RANGE
default:
qWarning( "QClipboardWatcher: internal error, unknown clipboard mode" );
tqWarning( "QClipboardWatcher: internal error, unknown clipboard mode" );
break;
#endif // QT_CHECK_RANGE
}
@ -1285,7 +1285,7 @@ bool QClipboardWatcher::empty() const
#ifdef QT_CHECK_STATE
if( win == requestor->winId()) {
qWarning( "QClipboardWatcher::empty: internal error, app owns the selection" );
tqWarning( "QClipboardWatcher::empty: internal error, app owns the selection" );
return TRUE;
}
#endif // QT_CHECK_STATE
@ -1371,10 +1371,10 @@ QByteArray QClipboardWatcher::encodedData( const char* fmt ) const
Atom fmtatom = 0;
if ( 0==qstricmp(fmt,"text/plain;charset=iso-8859-1") ) {
if ( 0==tqstricmp(fmt,"text/plain;charset=iso-8859-1") ) {
// ICCCM section 2.6.2 says STRING is latin1 text
fmtatom = XA_STRING;
} else if ( 0==qstricmp(fmt,"text/plain;charset=utf-8") ) {
} else if ( 0==tqstricmp(fmt,"text/plain;charset=utf-8") ) {
// proprosed UTF8_STRING conversion type
fmtatom = *qt_xdnd_str_to_atom( "UTF8_STRING" );
} else if ( 0==qstrcmp(fmt,"text/plain") ) {
@ -1476,7 +1476,7 @@ QMimeSource* QClipboard::data( Mode mode ) const
default:
#ifdef QT_CHECK_RANGE
qWarning( "QClipboard::data: invalid mode '%d'", mode );
tqWarning( "QClipboard::data: invalid mode '%d'", mode );
#endif // QT_CHECK_RANGE
return 0;
}
@ -1526,7 +1526,7 @@ void QClipboard::setData( QMimeSource* src, Mode mode )
default:
#ifdef QT_CHECK_RANGE
qWarning( "QClipboard::data: invalid mode '%d'", mode );
tqWarning( "QClipboard::data: invalid mode '%d'", mode );
#endif // QT_CHECK_RANGE
return;
}
@ -1557,7 +1557,7 @@ void QClipboard::setData( QMimeSource* src, Mode mode )
if (XGetSelectionOwner(dpy, atom) != newOwner) {
#ifdef QT_CHECK_STATE
qWarning("QClipboard::setData: Cannot set X11 selection owner for %s",
tqWarning("QClipboard::setData: Cannot set X11 selection owner for %s",
qt_xdnd_atom_to_str(atom));
#endif // QT_CHECK_STATE

@ -564,7 +564,7 @@ void QColor::setNamedColor( const QString &name )
d.d32.argb = Invalid;
d.d32.pix = Dirt;
#if defined(QT_CHECK_RANGE)
qWarning( "QColor::setNamedColor: could not parse color '%s'",
tqWarning( "QColor::setNamedColor: could not parse color '%s'",
name.local8Bit().data() );
#endif
} else {
@ -668,7 +668,7 @@ void QColor::setHsv( int h, int s, int v )
{
if ( h < -1 || (uint)s > 255 || (uint)v > 255 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QColor::setHsv: HSV parameters out of range" );
tqWarning( "QColor::setHsv: HSV parameters out of range" );
#endif
return;
}
@ -745,7 +745,7 @@ void QColor::setRgb( int r, int g, int b )
{
if ( (uint)r > 255 || (uint)g > 255 || (uint)b > 255 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QColor::setRgb: RGB parameter(s) out of range" );
tqWarning( "QColor::setRgb: RGB parameter(s) out of range" );
#endif
return;
}

@ -728,7 +728,7 @@ static int __cdecl rgb_cmp( const void *d1, const void *d2 )
static int rgb_cmp( const void *d1, const void *d2 )
#endif
{
return qstricmp( ((RGBData *)d1)->name, ((RGBData *)d2)->name );
return tqstricmp( ((RGBData *)d1)->name, ((RGBData *)d2)->name );
}
#if defined(Q_C_CALLBACKS)

@ -640,7 +640,7 @@ void QColor::setSystemNamedColor( const QString& name )
}
} else if ( !color_init ) {
#if defined(QT_CHECK_STATE)
qWarning( "QColor::setSystemNamedColor: Cannot perform this operation "
tqWarning( "QColor::setSystemNamedColor: Cannot perform this operation "
"because QApplication does not exist" );
#endif
// set color to invalid
@ -737,7 +737,7 @@ int QColor::enterAllocContext()
init_context_stack();
if ( context_ptr+1 == MAX_CONTEXTS ) {
#if defined(QT_CHECK_STATE)
qWarning( "QColor::enterAllocContext: Context stack overflow" );
tqWarning( "QColor::enterAllocContext: Context stack overflow" );
#endif
return 0;
}
@ -759,7 +759,7 @@ void QColor::leaveAllocContext()
init_context_stack();
if ( context_ptr == 0 ) {
#if defined(QT_CHECK_STATE)
qWarning( "QColor::leaveAllocContext: Context stack underflow" );
tqWarning( "QColor::leaveAllocContext: Context stack underflow" );
#endif
return;
}

@ -165,7 +165,7 @@ QDataStream &operator<<( QDataStream &s, const QCursor &c )
s << *c.bitmap() << *c.mask();
s << c.hotSpot();
#else
qWarning("No Image Cursor I/O");
tqWarning("No Image Cursor I/O");
#endif
}
return s;
@ -189,7 +189,7 @@ QDataStream &operator>>( QDataStream &s, QCursor &c )
s >> bm >> bmm >> hot;
c = QCursor( bm, bmm, hot.x(), hot.y() );
#else
qWarning("No Image Cursor I/O");
tqWarning("No Image Cursor I/O");
#endif
} else {
c.setShape( (int)shape ); // create cursor with shape

@ -166,7 +166,7 @@ void QCursor::initialize()
for( shape = 0; shape <= LastCursor; shape++ )
cursorTable[shape].data = new QCursorData( shape );
initialized = TRUE;
qAddPostRoutine( cleanup );
tqAddPostRoutine( cleanup );
}
@ -234,7 +234,7 @@ void QCursor::setBitmap( const QBitmap &bitmap, const QBitmap &mask,
if ( bitmap.depth() != 1 || mask.depth() != 1 ||
bitmap.size() != mask.size() ) {
#if defined(QT_CHECK_NULL)
qWarning( "QCursor: Cannot create bitmap cursor; invalid bitmap(s)" );
tqWarning( "QCursor: Cannot create bitmap cursor; invalid bitmap(s)" );
#endif
QCursor *c = &cursorTable[arrowCursorIdx];
c->data->ref();
@ -825,7 +825,7 @@ void QCursor::update() const
#endif /* QT_USE_APPROXIMATE_CURSORS */
default:
#if defined(QT_CHECK_RANGE)
qWarning( "QCursor::update: Invalid cursor shape %d", d->cshape );
tqWarning( "QCursor::update: Invalid cursor shape %d", d->cshape );
#endif
return;
}

@ -460,7 +460,7 @@ void qt_xdnd_setup() {
qt_x11_intern_atom( "QT_SELECTION", &qt_selection_property );
qt_x11_intern_atom( "INCR", &qt_incr_atom );
qAddPostRoutine( qt_xdnd_cleanup );
tqAddPostRoutine( qt_xdnd_cleanup );
}
@ -616,7 +616,7 @@ void qt_handle_xdnd_position( QWidget *w, const XEvent * xe, bool passive )
}
if ( l[0] != qt_xdnd_dragsource_xid ) {
//qDebug( "xdnd drag position from unexpected source (%08lx not %08lx)",
//tqDebug( "xdnd drag position from unexpected source (%08lx not %08lx)",
// l[0], qt_xdnd_dragsource_xid );
return;
}
@ -761,7 +761,7 @@ void qt_handle_xdnd_status( QWidget * w, const XEvent * xe, bool /*passive*/ )
void qt_handle_xdnd_leave( QWidget *w, const XEvent * xe, bool /*passive*/ )
{
//qDebug( "xdnd leave" );
//tqDebug( "xdnd leave" );
if ( !qt_xdnd_current_widget ||
w->topLevelWidget() != qt_xdnd_current_widget->topLevelWidget() ) {
return; // sanity
@ -780,7 +780,7 @@ void qt_handle_xdnd_leave( QWidget *w, const XEvent * xe, bool /*passive*/ )
if ( l[0] != qt_xdnd_dragsource_xid ) {
// This often happens - leave other-process window quickly
//qDebug( "xdnd drag leave from unexpected source (%08lx not %08lx",
//tqDebug( "xdnd drag leave from unexpected source (%08lx not %08lx",
//l[0], qt_xdnd_dragsource_xid );
qt_xdnd_current_widget = 0;
return;
@ -839,10 +839,10 @@ void qt_handle_xdnd_drop( QWidget *, const XEvent * xe, bool passive )
}
const unsigned long *l = (const unsigned long *)xe->xclient.data.l;
//qDebug( "xdnd drop" );
//tqDebug( "xdnd drop" );
if ( l[0] != qt_xdnd_dragsource_xid ) {
//qDebug( "xdnd drop from unexpected source (%08lx not %08lx",
//tqDebug( "xdnd drop from unexpected source (%08lx not %08lx",
// l[0], qt_xdnd_dragsource_xid );
return;
}
@ -1509,7 +1509,7 @@ bool qt_xdnd_handle_badwindow()
bool QDropEvent::provides( const char *mimeType ) const
{
if ( qt_motifdnd_active && qstrnicmp( mimeType, "text/", 5 ) == 0 )
if ( qt_motifdnd_active && tqstrnicmp( mimeType, "text/", 5 ) == 0 )
return TRUE;
int n=0;
@ -1519,7 +1519,7 @@ bool QDropEvent::provides( const char *mimeType ) const
if ( !f )
return FALSE;
n++;
} while( qstricmp( mimeType, f ) );
} while( tqstricmp( mimeType, f ) );
return TRUE;
}
@ -1617,7 +1617,7 @@ static QByteArray qt_xdnd_obtain_data( const char *format )
qt_xdnd_selection,
nbytes, FALSE );
} else if ( type != *a ) {
// (includes None) qDebug( "Qt clipboard: unknown atom %ld", type);
// (includes None) tqDebug( "Qt clipboard: unknown atom %ld", type);
}
#if 0
// this needs to be matched by a qt_xdnd_target_data->clear()

@ -814,7 +814,7 @@ QTextCodec* findcodec(const QMimeSource* e)
const char* f;
int i;
for ( i=0; (f=e->format(i)); i++ ) {
bool html = !qstrnicmp(f, "text/html", 9);
bool html = !tqstrnicmp(f, "text/html", 9);
if (html)
r = codecForHTML(QCString(e->encodedData(f)));
if (!r)
@ -833,7 +833,7 @@ QTextCodec* findcodec(const QMimeSource* e)
QByteArray QTextDrag::encodedData(const char* mime) const
{
QCString r;
if ( 0==qstrnicmp(mime,"text/",5) ) {
if ( 0==tqstrnicmp(mime,"text/",5) ) {
QCString m(mime);
m = m.lower();
QTextCodec *codec = qt_findcharset(m);
@ -872,7 +872,7 @@ bool QTextDrag::canDecode( const QMimeSource* e )
{
const char* f;
for (int i=0; (f=e->format(i)); i++) {
if ( 0==qstrnicmp(f,"text/",5) ) {
if ( 0==tqstrnicmp(f,"text/",5) ) {
return findcodec(e) != 0;
}
}
@ -912,7 +912,7 @@ bool QTextDrag::decode( const QMimeSource* e, QString& str, QCString& subtype )
const char* mime;
for (int i=0; (mime = e->format(i)); i++) {
if ( 0==qstrnicmp(mime,"text/",5) ) {
if ( 0==tqstrnicmp(mime,"text/",5) ) {
QCString m(mime);
m = m.lower();
int semi = m.find(';');
@ -920,7 +920,7 @@ bool QTextDrag::decode( const QMimeSource* e, QString& str, QCString& subtype )
semi = m.length();
QCString foundst = m.mid(5,semi-5);
if ( subtype.isNull() || foundst == subtype ) {
bool html = !qstrnicmp(mime, "text/html", 9);
bool html = !tqstrnicmp(mime, "text/html", 9);
QTextCodec* codec = 0;
if (html) {
QByteArray bytes = e->encodedData(mime);
@ -1087,7 +1087,7 @@ const char * QImageDrag::format(int i) const
*/
QByteArray QImageDrag::encodedData(const char* fmt) const
{
if ( qstrnicmp( fmt, "image/", 6 )==0 ) {
if ( tqstrnicmp( fmt, "image/", 6 )==0 ) {
QCString f = fmt+6;
QByteArray data;
QBuffer w( data );
@ -1233,7 +1233,7 @@ QStoredDrag::QStoredDrag( const char* mimeType, QWidget * dragSource, const char
QDragObject(dragSource,name)
{
d = new QStoredDragData();
d->fmt = qstrdup(mimeType);
d->fmt = tqstrdup(mimeType);
}
/*!
@ -1278,7 +1278,7 @@ void QStoredDrag::setEncodedData( const QByteArray & encodedData )
*/
QByteArray QStoredDrag::encodedData(const char* m) const
{
if ( !qstricmp(m,d->fmt) )
if ( !tqstricmp(m,d->fmt) )
return d->enc;
else
return QByteArray();
@ -1588,7 +1588,7 @@ QString QUriDrag::uriToLocalFile(const char* uri)
if (!uri)
return file;
if (0==qstrnicmp(uri,"file:/",6)) // It is a local file uri
if (0==tqstrnicmp(uri,"file:/",6)) // It is a local file uri
uri += 6;
else if (QString(uri).find(":/") != -1) // It is a different scheme uri
return file;

@ -86,7 +86,7 @@ void qDrawShadeLine( QPainter *p, int x1, int y1, int x2, int y2,
{
if (!( p && lineWidth >= 0 && midLineWidth >= 0 ) ) {
#if defined(QT_CHECK_RANGE)
qWarning( "qDrawShadeLine invalid parameters." );
tqWarning( "qDrawShadeLine invalid parameters." );
#endif
return;
}
@ -209,7 +209,7 @@ void qDrawShadeRect( QPainter *p, int x, int y, int w, int h,
return;
if ( ! ( w > 0 && h > 0 && lineWidth >= 0 && midLineWidth >= 0 ) ) {
#if defined(QT_CHECK_RANGE)
qWarning( "qDrawShadeRect(): Invalid parameters" );
tqWarning( "qDrawShadeRect(): Invalid parameters" );
#endif
return;
}
@ -309,7 +309,7 @@ void qDrawShadePanel( QPainter *p, int x, int y, int w, int h,
return;
if ( !( w > 0 && h > 0 && lineWidth >= 0 ) ) {
#if defined(QT_CHECK_RANGE)
qWarning( "qDrawShadePanel() Invalid parameters." );
tqWarning( "qDrawShadePanel() Invalid parameters." );
#endif
}
QColor shade = g.dark();
@ -538,7 +538,7 @@ void qDrawPlainRect( QPainter *p, int x, int y, int w, int h, const QColor &c,
return;
if ( !( w > 0 && h > 0 && lineWidth >= 0 ) ) {
#if defined(QT_CHECK_RANGE)
qWarning( "qDrawPlainRect() Invalid parameters." );
tqWarning( "qDrawPlainRect() Invalid parameters." );
#endif
}
QPen oldPen = p->pen();
@ -948,7 +948,7 @@ void qDrawArrow( QPainter *p, Qt::ArrowType type, Qt::GUIStyle style, bool down,
#endif
default:
#if defined(QT_CHECK_RANGE)
qWarning( "qDrawArrow: Requested GUI style not supported" );
tqWarning( "qDrawArrow: Requested GUI style not supported" );
#else
;
#endif

@ -101,7 +101,7 @@ QEventLoop::QEventLoop( QObject *parent, const char *name )
{
#if defined(QT_CHECK_STATE)
if ( QApplication::eventloop )
qFatal( "QEventLoop: there must be only one event loop object. \nConstruct it before QApplication." );
tqFatal( "QEventLoop: there must be only one event loop object. \nConstruct it before QApplication." );
// for now ;)
#endif // QT_CHECK_STATE

@ -184,7 +184,7 @@ static void insertTimer( const TimerInfo *ti ) // insert timer info into list
timerList->insert( index, ti ); // inserts sorted
#if defined(QT_DEBUG)
if ( dangerCount > 16 )
qDebug( "QObject: %d timers now exist for object %s::%s",
tqDebug( "QObject: %d timers now exist for object %s::%s",
dangerCount, ti->obj->className(), ti->obj->name() );
#endif
}
@ -367,7 +367,7 @@ void QEventLoop::registerSocketNotifier( QSocketNotifier *notifier )
int type = notifier->type();
if ( sockfd < 0 || sockfd >= FD_SETSIZE || type < 0 || type > 2 || notifier == 0 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QSocketNotifier: Internal error" );
tqWarning( "QSocketNotifier: Internal error" );
#endif
return;
}
@ -399,7 +399,7 @@ void QEventLoop::registerSocketNotifier( QSocketNotifier *notifier )
#if defined(QT_CHECK_STATE)
if ( p && p->fd == sockfd ) {
static const char *t[] = { "read", "write", "exception" };
qWarning( "QSocketNotifier: Multiple socket notifiers for "
tqWarning( "QSocketNotifier: Multiple socket notifiers for "
"same socket %d and type %s", sockfd, t[type] );
}
#endif
@ -419,7 +419,7 @@ void QEventLoop::unregisterSocketNotifier( QSocketNotifier *notifier )
int type = notifier->type();
if ( sockfd < 0 || type < 0 || type > 2 || notifier == 0 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QSocketNotifier: Internal error" );
tqWarning( "QSocketNotifier: Internal error" );
#endif
return;
}
@ -456,7 +456,7 @@ void QEventLoop::setSocketNotifierPending( QSocketNotifier *notifier )
int type = notifier->type();
if ( sockfd < 0 || type < 0 || type > 2 || notifier == 0 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QSocketNotifier: Internal error" );
tqWarning( "QSocketNotifier: Internal error" );
#endif
return;
}

@ -337,7 +337,7 @@ bool QEventLoop::processEvents( ProcessEventsFlags flags )
if (ret == -1 && errno == EBADF) {
// disable the invalid socket notifier
static const char *t[] = { "Read", "Write", "Exception" };
qWarning("QSocketNotifier: invalid socket %d and type '%s', disabling...",
tqWarning("QSocketNotifier: invalid socket %d and type '%s', disabling...",
sn->fd, t[type]);
sn->obj->setEnabled(FALSE);
}

@ -63,9 +63,9 @@
// #define QFONTCACHE_DEBUG
#ifdef QFONTCACHE_DEBUG
# define FC_DEBUG qDebug
# define FC_DEBUG tqDebug
#else
# define FC_DEBUG if (FALSE) qDebug
# define FC_DEBUG if (FALSE) tqDebug
#endif
@ -733,7 +733,7 @@ void QFont::setPointSize( int pointSize )
if ( pointSize <= 0 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QFont::setPointSize: Point size <= 0 (%d)", pointSize );
tqWarning( "QFont::setPointSize: Point size <= 0 (%d)", pointSize );
#endif
return;
@ -758,7 +758,7 @@ void QFont::setPointSizeFloat( float pointSize )
{
if ( pointSize <= 0.0 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QFont::setPointSize: Point size <= 0 (%f)", pointSize );
tqWarning( "QFont::setPointSize: Point size <= 0 (%f)", pointSize );
#endif
return;
}
@ -795,7 +795,7 @@ void QFont::setPixelSize( int pixelSize )
{
if ( pixelSize <= 0 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QFont::setPixelSize: Pixel size <= 0 (%d)", pixelSize );
tqWarning( "QFont::setPixelSize: Pixel size <= 0 (%d)", pixelSize );
#endif
return;
}
@ -892,7 +892,7 @@ void QFont::setWeight( int weight )
if ( weight < 0 || weight > 99 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QFont::setWeight: Value out of range (%d)", weight );
tqWarning( "QFont::setWeight: Value out of range (%d)", weight );
#endif
return;
@ -1203,7 +1203,7 @@ void QFont::setStretch( int factor )
{
if ( factor < 1 || factor > 4000 ) {
#ifdef QT_CHECK_RANGE
qWarning( "QFont::setStretch(): parameter '%d' out of range", factor );
tqWarning( "QFont::setStretch(): parameter '%d' out of range", factor );
#endif // QT_CHECK_RANGE
return;
@ -1658,7 +1658,7 @@ bool QFont::fromString(const QString &descrip)
if ( !count || ( count > 2 && count < 9 ) || count > 11 ) {
#ifdef QT_CHECK_STATE
qWarning("QFont::fromString: invalid description '%s'",
tqWarning("QFont::fromString: invalid description '%s'",
descrip.isEmpty() ? "(empty)" : descrip.latin1());
#endif
@ -1917,7 +1917,7 @@ QFontMetrics::QFontMetrics( const QPainter *p )
{
#if defined(CHECK_STATE)
if ( !painter->isActive() )
qWarning( "QFontMetrics: Get font metrics between QPainter::begin() "
tqWarning( "QFontMetrics: Get font metrics between QPainter::begin() "
"and QPainter::end()" );
#endif
@ -2676,7 +2676,7 @@ QFontInfo::QFontInfo( const QPainter *p )
#if defined(CHECK_STATE)
if ( !painter->isActive() )
qWarning( "QFontInfo: Get font info between QPainter::begin() "
tqWarning( "QFontInfo: Get font info between QPainter::begin() "
"and QPainter::end()" );
#endif

@ -350,7 +350,7 @@ void QFontPrivate::load( QFont::Script script )
#ifdef QT_CHECK_STATE
// sanity checks
if (!QFontCache::instance)
qWarning("Must construct a QApplication before a QFont");
tqWarning("Must construct a QApplication before a QFont");
Q_ASSERT( script >= 0 && script < QFont::LastPrivateScript );
#endif // QT_CHECK_STATE
@ -521,7 +521,7 @@ void QFont::setRawName( const QString &name )
if ( ! qt_fillFontDef( qt_fixXLFD( name.latin1() ), &d->request, d->screen ) ) {
#ifdef QT_CHECK_STATE
qWarning("QFont::setRawName(): Invalid XLFD: \"%s\"", name.latin1());
tqWarning("QFont::setRawName(): Invalid XLFD: \"%s\"", name.latin1());
#endif // QT_CHECK_STATE
setFamily( name );
@ -650,7 +650,7 @@ QString QFont::lastResortFont() const
}
#if defined(CHECK_NULL)
qFatal( "QFontPrivate::lastResortFont: Cannot find any reasonable font" );
tqFatal( "QFontPrivate::lastResortFont: Cannot find any reasonable font" );
#endif
return last;

@ -57,16 +57,16 @@
//#define QFONTDATABASE_DEBUG
#ifdef QFONTDATABASE_DEBUG
# define FD_DEBUG qDebug
# define FD_DEBUG tqDebug
#else
# define FD_DEBUG if (FALSE) qDebug
# define FD_DEBUG if (FALSE) tqDebug
#endif
//#define FONT_MATCH_DEBUG
#ifdef FONT_MATCH_DEBUG
# define FM_DEBUG qDebug
# define FM_DEBUG tqDebug
#else
# define FM_DEBUG if (FALSE) qDebug
# define FM_DEBUG if (FALSE) tqDebug
#endif
#if defined(Q_CC_MSVC) && !defined(Q_CC_MSVC_NET)
@ -307,7 +307,7 @@ QtFontStyle *QtFontFoundry::style( const QtFontStyle::Key &key, bool create )
if ( !create )
return 0;
// qDebug("adding key (weight=%d, italic=%d, oblique=%d stretch=%d) at %d", key.weight, key.italic, key.oblique, key.stretch, pos );
// tqDebug("adding key (weight=%d, italic=%d, oblique=%d stretch=%d) at %d", key.weight, key.italic, key.oblique, key.stretch, pos );
if ( !(count % 8) )
styles = (QtFontStyle **)
realloc( styles, (((count+8) >> 3 ) << 3) * sizeof( QtFontStyle * ) );
@ -439,7 +439,7 @@ QtFontFamily *QFontDatabasePrivate::family( const QString &f, bool create )
if ( res < 0 )
pos++;
// qDebug("adding family %s at %d total=%d", f.latin1(), pos, count);
// tqDebug("adding family %s at %d total=%d", f.latin1(), pos, count);
if ( !(count % 8) )
families = (QtFontFamily **)
realloc( families,
@ -1343,7 +1343,7 @@ int main( int argc, char **argv )
QStringList families = fdb.families();
for ( QStringList::Iterator f = families.begin(); f != families.end(); ++f ) {
QString family = *f;
qDebug( family );
tqDebug( family );
QStringList styles = fdb.styles( family );
for ( QStringList::Iterator s = styles.begin(); s != styles.end(); ++s ) {
QString style = *s;
@ -1354,7 +1354,7 @@ int main( int argc, char **argv )
dstyle += QString::number( *points ) + " ";
}
dstyle = dstyle.left( dstyle.length() - 1 ) + ")";
qDebug( dstyle );
tqDebug( dstyle );
}
}
return 0;

@ -65,9 +65,9 @@
#endif
#ifdef QFONTDATABASE_DEBUG
# define FD_DEBUG qDebug
# define FD_DEBUG tqDebug
#else
# define FD_DEBUG if (FALSE) qDebug
# define FD_DEBUG if (FALSE) tqDebug
#endif // QFONTDATABASE_DEBUG
// from qfont_x11.cpp
@ -450,7 +450,7 @@ const int numEncodings = sizeof( xlfd_encoding ) / sizeof( XlfdEncoding ) - 1;
int qt_xlfd_encoding_id( const char *encoding )
{
// qDebug("looking for encoding id for '%s'", encoding );
// tqDebug("looking for encoding id for '%s'", encoding );
int len = strlen( encoding );
if ( len < 4 )
return -1;
@ -468,11 +468,11 @@ int qt_xlfd_encoding_id( const char *encoding )
const char *n = enc->name;
const char *e = encoding;
while ( 1 ) {
// qDebug("bol: *e='%c', *n='%c'", *e, *n );
// tqDebug("bol: *e='%c', *n='%c'", *e, *n );
if ( *e == '\0' ) {
if ( *n )
break;
// qDebug( "found encoding id %d", enc->id );
// tqDebug( "found encoding id %d", enc->id );
return enc->id;
}
if ( *e == *n ) {
@ -483,12 +483,12 @@ int qt_xlfd_encoding_id( const char *encoding )
if ( *n != '*' )
break;
++n;
// qDebug("skip: *e='%c', *n='%c'", *e, *n );
// tqDebug("skip: *e='%c', *n='%c'", *e, *n );
while ( *e && *e != *n )
++e;
}
}
// qDebug( "couldn't find encoding %s", encoding );
// tqDebug( "couldn't find encoding %s", encoding );
return -1;
}
@ -734,7 +734,7 @@ static void loadXlfds( const char *reqFamily, int encoding_id )
char **fontList = XListFonts( QPaintDevice::x11AppDisplay(),
xlfd_pattern.data(),
0xffff, &fontCount );
// qDebug("requesting xlfd='%s', got %d fonts", xlfd_pattern.data(), fontCount );
// tqDebug("requesting xlfd='%s', got %d fonts", xlfd_pattern.data(), fontCount );
char *tokens[NFontFields];
@ -787,9 +787,9 @@ static void loadXlfds( const char *reqFamily, int encoding_id )
QtFontStyle *style = foundry->style( styleKey, TRUE );
delete [] style->weightName;
style->weightName = qstrdup( tokens[Weight] );
style->weightName = tqstrdup( tokens[Weight] );
delete [] style->setwidthName;
style->setwidthName = qstrdup( tokens[Width] );
style->setwidthName = tqstrdup( tokens[Width] );
if ( smooth_scalable ) {
style->smoothScalable = TRUE;
@ -1095,7 +1095,7 @@ static Q_UINT16 getGlyphIndex( unsigned char *table, Q_UINT16 format, unsigned s
if ( unicode < 256 )
return (int) *(table+6+unicode);
} else if ( format == 2 ) {
qWarning("format 2 encoding table for Unicode, not implemented!");
tqWarning("format 2 encoding table for Unicode, not implemented!");
} else if ( format == 4 ) {
Q_UINT16 segCountX2 = getUShort( table + 6 );
unsigned char *ends = table + 14;
@ -1137,7 +1137,7 @@ static inline void checkXftCoverage( QtFontFamily *family )
QCString ext = family->fontFilename.mid( family->fontFilename.findRev( '.' ) ).lower();
if ( family->fontFileIndex == 0 && ( ext == ".ttf" || ext == ".otf" ) ) {
void *map;
// qDebug("using own ttf code coverage checking of '%s'!", family->name.latin1() );
// tqDebug("using own ttf code coverage checking of '%s'!", family->name.latin1() );
int fd = open( family->fontFilename.data(), O_RDONLY );
size_t pagesize = getpagesize();
off_t offset = 0;
@ -1152,7 +1152,7 @@ static inline void checkXftCoverage( QtFontFamily *family )
unsigned char *ttf = (unsigned char *)map;
Q_UINT32 version = getUInt( ttf );
if ( version != 0x00010000 ) {
// qDebug("file has wrong version %x", version );
// tqDebug("file has wrong version %x", version );
goto error1;
}
Q_UINT16 numTables = getUShort( ttf+4 );
@ -1169,7 +1169,7 @@ static inline void checkXftCoverage( QtFontFamily *family )
}
}
if ( !cmap_offset ) {
// qDebug("no cmap found" );
// tqDebug("no cmap found" );
goto error1;
}
@ -1186,7 +1186,7 @@ static inline void checkXftCoverage( QtFontFamily *family )
version = getUShort( cmap );
if ( version != 0 ) {
// qDebug("wrong cmap version" );
// tqDebug("wrong cmap version" );
goto error1;
}
numTables = getUShort( cmap + 2 );
@ -1205,7 +1205,7 @@ static inline void checkXftCoverage( QtFontFamily *family )
}
if ( !unicode_table ) {
// qDebug("no unicode table found" );
// tqDebug("no unicode table found" );
goto error1;
}
@ -1230,7 +1230,7 @@ static inline void checkXftCoverage( QtFontFamily *family )
}
}
if ( supported ){
// qDebug("font can render script %d", i );
// tqDebug("font can render script %d", i );
family->scripts[i] = QtFontFamily::Supported;
} else {
family->scripts[i] |= QtFontFamily::UnSupported_Xft;
@ -1451,7 +1451,7 @@ static void initializeDb()
else if ( style->bitmapScalable )
FD_DEBUG("\t\t\t\tbitmap scalable" );
if ( style->pixelSizes ) {
qDebug("\t\t\t\t%d pixel sizes", style->count );
tqDebug("\t\t\t\t%d pixel sizes", style->count );
for ( int z = 0; z < style->count; ++z ) {
QtFontSize *size = style->pixelSizes + z;
for ( int e = 0; e < size->count; ++e ) {
@ -1809,7 +1809,7 @@ static QFontEngine *loadFontConfigFont(const QFontPrivate *fp, const QFontDef &r
double scale = addPatternProps(pattern, key, FALSE, TRUE, fp, request);
#ifdef FONT_MATCH_DEBUG
qDebug("original pattern contains:");
tqDebug("original pattern contains:");
FcPatternPrint(pattern);
#endif
@ -1818,7 +1818,7 @@ static QFontEngine *loadFontConfigFont(const QFontPrivate *fp, const QFontDef &r
FcConfigSubstitute(0, pattern, FcMatchPattern);
XftDefaultSubstitute(QPaintDevice::x11AppDisplay(), QPaintDevice::x11AppScreen(), pattern);
// qDebug("1: pattern contains:");
// tqDebug("1: pattern contains:");
// FcPatternPrint(pattern);
{
@ -1951,7 +1951,7 @@ static QFontEngine *loadFontConfigFont(const QFontPrivate *fp, const QFontDef &r
if ( !xftfs ) {
// Xft couldn't find a font?
qDebug("couldn't open fontconfigs chosen font with Xft!!!");
tqDebug("couldn't open fontconfigs chosen font with Xft!!!");
} else {
fe = new QFontEngineXft( xftfs, result, 0 );
if (fp->paintdevice

@ -139,7 +139,7 @@ static QBitmap transform(Display *dpy, const QBitmap &source, int xoff, int yof
bm = QBitmap( w, h, dptr, QImage::systemBitOrder() != QImage::BigEndian );
} else {
#if defined(QT_CHECK_RANGE)
qWarning( "QFontEngineXft::tranform: xform failed");
tqWarning( "QFontEngineXft::tranform: xform failed");
#endif
}
@ -266,7 +266,7 @@ void QFontEngineBox::draw( QPainter *p, int x, int y, const QTextEngine *engine,
glyph_metrics_t ci = boundingBox( glyphs, offsets, numGlyphs );
p->drawRect( x + ci.x, y + ci.y, ci.width, ci.height );
p->drawRect( x + ci.x, y + 50 + ci.y, ci.width, ci.height );
qDebug("bounding rect=%d %d (%d/%d)", ci.x, ci.y, ci.width, ci.height );
tqDebug("bounding rect=%d %d (%d/%d)", ci.x, ci.y, ci.width, ci.height );
p->restore();
int xp = x;
int yp = y;
@ -323,7 +323,7 @@ void QFontEngineBox::draw( QPainter *p, int x, int y, const QTextEngine *engine,
x += offsets[i].x;
y += offsets[i].y;
p->drawRect( x + ci.x, y + 50 + ci.y, ci.width, ci.height );
qDebug("bounding ci[%d]=%d %d (%d/%d) / %d %d offset=(%d/%d)", i, ci.x, ci.y, ci.width, ci.height,
tqDebug("bounding ci[%d]=%d %d (%d/%d) / %d %d offset=(%d/%d)", i, ci.x, ci.y, ci.width, ci.height,
ci.xoff, ci.yoff, offsets[i].x, offsets[i].y );
x += ci.xoff;
y += ci.yoff;
@ -558,7 +558,7 @@ void QFontEngineXLFD::draw( QPainter *p, int x, int y, const QTextEngine *engine
if ( !si->num_glyphs )
return;
// qDebug("QFontEngineXLFD::draw( %d, %d, numglyphs=%d", x, y, si->num_glyphs );
// tqDebug("QFontEngineXLFD::draw( %d, %d, numglyphs=%d", x, y, si->num_glyphs );
Display *dpy = QPaintDevice::x11AppDisplay();
Qt::HANDLE hd = p->device()->handle();
@ -633,7 +633,7 @@ void QFontEngineXLFD::draw( QPainter *p, int x, int y, const QTextEngine *engine
matrix += ' ';
}
matrix += ']';
//qDebug("m: %2.2f %2.2f %2.2f %2.2f, matrix=%s", p->m11(), p->m12(), p->m21(), p->m22(), matrix.data());
//tqDebug("m: %2.2f %2.2f %2.2f %2.2f, matrix=%s", p->m11(), p->m12(), p->m21(), p->m22(), matrix.data());
xlfd_transformed.replace( pos, endPos-pos, matrix );
x_font_load_error = FALSE;
@ -642,7 +642,7 @@ void QFontEngineXLFD::draw( QPainter *p, int x, int y, const QTextEngine *engine
XSync( dpy, FALSE );
XSetErrorHandler( old_handler );
if ( x_font_load_error ) {
//qDebug( "couldn't load transformed font" );
//tqDebug( "couldn't load transformed font" );
font_id = _fs->fid;
xlfd_transformations = XlfdTrUnsupported;
} else {
@ -678,7 +678,7 @@ void QFontEngineXLFD::draw( QPainter *p, int x, int y, const QTextEngine *engine
glyph_metrics_t ci = boundingBox( glyphs, advances, offsets, si->num_glyphs );
p->drawRect( x + ci.x, y + ci.y, ci.width, ci.height );
p->drawRect( x + ci.x, y + 100 + ci.y, ci.width, ci.height );
qDebug("bounding rect=%d %d (%d/%d)", ci.x, ci.y, ci.width, ci.height );
tqDebug("bounding rect=%d %d (%d/%d)", ci.x, ci.y, ci.width, ci.height );
p->restore();
int xp = x;
int yp = y;
@ -705,7 +705,7 @@ void QFontEngineXLFD::draw( QPainter *p, int x, int y, const QTextEngine *engine
int i = si->num_glyphs;
while( i-- ) {
advance_t adv = advances[i];
// qDebug("advance = %d/%d", adv.x, adv.y );
// tqDebug("advance = %d/%d", adv.x, adv.y );
x += adv;
glyph_metrics_t gi = boundingBox( glyphs[i] );
int xp = x-offsets[i].x-gi.xoff;
@ -726,7 +726,7 @@ void QFontEngineXLFD::draw( QPainter *p, int x, int y, const QTextEngine *engine
if (!glyphAttributes[i].zeroWidth && xp < SHRT_MAX && xp > SHRT_MIN)
XDrawString16(dpy, hd, gc, xp, yp, chars+i, 1 );
advance_t adv = advances[i];
// qDebug("advance = %d/%d", adv.x, adv.y );
// tqDebug("advance = %d/%d", adv.x, adv.y );
x += adv;
i++;
}
@ -760,7 +760,7 @@ void QFontEngineXLFD::draw( QPainter *p, int x, int y, const QTextEngine *engine
for ( int i = 0; i < si->num_glyphs; i++ ) {
glyph_metrics_t ci = boundingBox( glyphs[i] );
p->drawRect( x + ci.x + offsets[i].x, y + 100 + ci.y + offsets[i].y, ci.width, ci.height );
qDebug("bounding ci[%d]=%d %d (%d/%d) / %d %d offs=(%d/%d) advance=(%d/%d)", i, ci.x, ci.y, ci.width, ci.height,
tqDebug("bounding ci[%d]=%d %d (%d/%d) / %d %d offs=(%d/%d) advance=(%d/%d)", i, ci.x, ci.y, ci.width, ci.height,
ci.xoff, ci.yoff, offsets[i].x, offsets[i].y,
advances[i].x, advances[i].y);
x += advances[i].x;
@ -1505,10 +1505,10 @@ QFontEngineXft::QFontEngineXft( XftFont *font, XftPattern *pattern, int cmap )
// Xft maps Unicode and adobe roman for us.
for (int i = 0; i < _face->num_charmaps; ++i) {
FT_CharMap cm = _face->charmaps[i];
// qDebug("font has charmap %x", cm->encoding);
// tqDebug("font has charmap %x", cm->encoding);
if (cm->encoding == ft_encoding_adobe_custom
|| cm->encoding == ft_encoding_symbol) {
// qDebug("font has adobe custom or ms symbol charmap");
// tqDebug("font has adobe custom or ms symbol charmap");
_cmap = i;
break;
}
@ -1855,13 +1855,13 @@ void QFontEngineXft::draw( QPainter *p, int x, int y, const QTextEngine *engine,
col.color.alpha = 0xffff;
col.pixel = pen.pixel();
#ifdef FONTENGINE_DEBUG
qDebug("===== drawing %d glyphs reverse=%s ======", si->num_glyphs, si->analysis.bidiLevel % 2?"TRUE":"FALSE" );
tqDebug("===== drawing %d glyphs reverse=%s ======", si->num_glyphs, si->analysis.bidiLevel % 2?"TRUE":"FALSE" );
p->save();
p->setBrush( Qt::white );
glyph_metrics_t ci = boundingBox( glyphs, advances, offsets, si->num_glyphs );
p->drawRect( x + ci.x, y + ci.y, ci.width, ci.height );
p->drawRect( x + ci.x, y + 100 + ci.y, ci.width, ci.height );
qDebug("bounding rect=%d %d (%d/%d)", ci.x, ci.y, ci.width, ci.height );
tqDebug("bounding rect=%d %d (%d/%d)", ci.x, ci.y, ci.width, ci.height );
p->restore();
int yp = y;
int xp = x;
@ -1895,7 +1895,7 @@ void QFontEngineXft::draw( QPainter *p, int x, int y, const QTextEngine *engine,
p->drawRect( x+offsets[i].x+gi.x, y+offsets[i].y+100+gi.y, gi.width, gi.height );
p->drawLine( x+offsets[i].x, y + 150 + 5*i , x+offsets[i].x+advances[i], y + 150 + 5*i );
p->drawLine( x+offsets[i].x, y + 152 + 5*i , x+offsets[i].x+gi.xoff, y + 152 + 5*i );
qDebug("bounding ci[%d]=%d %d (%d/%d) / %d %d offs=(%d/%d) advance=%d", i, gi.x, gi.y, gi.width, gi.height,
tqDebug("bounding ci[%d]=%d %d (%d/%d) / %d %d offs=(%d/%d) advance=%d", i, gi.x, gi.y, gi.width, gi.height,
gi.xoff, gi.yoff, offsets[i].x, offsets[i].y, advances[i]);
#endif
x += advances[i];
@ -1915,7 +1915,7 @@ void QFontEngineXft::draw( QPainter *p, int x, int y, const QTextEngine *engine,
if (!glyphAttributes[i].zeroWidth && xp < SHRT_MAX && xp > SHRT_MIN)
XftDrawString16( draw, &col, fnt, xp, yp, (XftChar16 *) (glyphs+i), 1 );
#endif // QT_XFT2
// qDebug("advance = %d/%d", adv.x, adv.y );
// tqDebug("advance = %d/%d", adv.x, adv.y );
x += advances[i];
i++;
}
@ -1980,7 +1980,7 @@ void QFontEngineXft::draw( QPainter *p, int x, int y, const QTextEngine *engine,
for ( int i = 0; i < si->num_glyphs; i++ ) {
glyph_metrics_t ci = boundingBox( glyphs[i] );
p->drawRect( x + ci.x + offsets[i].x, y + 100 + ci.y + offsets[i].y, ci.width, ci.height );
qDebug("bounding ci[%d]=%d %d (%d/%d) / %d %d offs=(%d/%d) advance=%d", i, ci.x, ci.y, ci.width, ci.height,
tqDebug("bounding ci[%d]=%d %d (%d/%d) / %d %d offs=(%d/%d) advance=%d", i, ci.x, ci.y, ci.width, ci.height,
ci.xoff, ci.yoff, offsets[i].x, offsets[i].y, advances[i]);
x += advances[i];
}
@ -2208,7 +2208,7 @@ bool QFontEngineXft::canRender( const QChar *string, int len )
QOpenType *QFontEngineXft::openType() const
{
// qDebug("openTypeIface requested!");
// tqDebug("openTypeIface requested!");
if ( _openType )
return _openType;
@ -2390,7 +2390,7 @@ QOpenType::QOpenType(QFontEngineXft *fe)
FT_Error error;
if ((error = TT_Load_GDEF_Table(face, &gdef))) {
#ifdef OT_DEBUG
qDebug("error loading gdef table: %d", error);
tqDebug("error loading gdef table: %d", error);
#endif
gdef = 0;
}
@ -2399,9 +2399,9 @@ QOpenType::QOpenType(QFontEngineXft *fe)
gsub = 0;
#ifdef OT_DEBUG
if (error != FT_Err_Table_Missing) {
qDebug("error loading gsub table: %d", error);
tqDebug("error loading gsub table: %d", error);
} else {
qDebug("face doesn't have a gsub table");
tqDebug("face doesn't have a gsub table");
}
#endif
}
@ -2409,7 +2409,7 @@ QOpenType::QOpenType(QFontEngineXft *fe)
if ((error = TT_Load_GPOS_Table(face, &gpos, gdef))) {
gpos = 0;
#ifdef OT_DEBUG
qDebug("error loading gpos table: %d", error);
tqDebug("error loading gpos table: %d", error);
#endif
}
@ -2448,7 +2448,7 @@ bool QOpenType::checkScript(unsigned int script)
FT_Error error = TT_GSUB_Select_Script(gsub, tag, &script_index);
if (error) {
#ifdef OT_DEBUG
qDebug("could not select script %d in GSub table: %d", (int)script, error);
tqDebug("could not select script %d in GSub table: %d", (int)script, error);
#endif
return FALSE;
}
@ -2462,7 +2462,7 @@ bool QOpenType::checkScript(unsigned int script)
FT_Error error = TT_GPOS_Select_Script(gpos, script, &script_index);
if (error) {
#ifdef OT_DEBUG
qDebug("could not select script in gpos table: %d", error);
tqDebug("could not select script in gpos table: %d", error);
#endif
return FALSE;
}
@ -2486,10 +2486,10 @@ void QOpenType::selectScript(unsigned int script, const Features *features)
{
TTO_FeatureList featurelist = gsub->FeatureList;
int numfeatures = featurelist.FeatureCount;
qDebug("gsub table has %d features", numfeatures);
tqDebug("gsub table has %d features", numfeatures);
for(int i = 0; i < numfeatures; i++) {
TTO_FeatureRecord *r = featurelist.FeatureRecord + i;
qDebug(" feature '%s'", tag_to_string(r->FeatureTag));
tqDebug(" feature '%s'", tag_to_string(r->FeatureTag));
}
}
#endif
@ -2498,14 +2498,14 @@ void QOpenType::selectScript(unsigned int script, const Features *features)
FT_Error error = TT_GSUB_Select_Script(gsub, tag, &script_index);
if (!error) {
#ifdef OT_DEBUG
qDebug("script %s has script index %d", tag_to_string(script), script_index);
tqDebug("script %s has script index %d", tag_to_string(script), script_index);
#endif
while (features->tag) {
FT_UShort feature_index;
error = TT_GSUB_Select_Feature(gsub, features->tag, script_index, 0xffff, &feature_index);
if (!error) {
#ifdef OT_DEBUG
qDebug(" adding feature %s", tag_to_string(features->tag));
tqDebug(" adding feature %s", tag_to_string(features->tag));
#endif
TT_GSUB_Add_Feature(gsub, feature_index, features->property);
}
@ -2523,12 +2523,12 @@ void QOpenType::selectScript(unsigned int script, const Features *features)
{
TTO_FeatureList featurelist = gpos->FeatureList;
int numfeatures = featurelist.FeatureCount;
qDebug("gpos table has %d features", numfeatures);
tqDebug("gpos table has %d features", numfeatures);
for(int i = 0; i < numfeatures; i++) {
TTO_FeatureRecord *r = featurelist.FeatureRecord + i;
FT_UShort feature_index;
TT_GPOS_Select_Feature(gpos, r->FeatureTag, script_index, 0xffff, &feature_index);
qDebug(" feature '%s'", tag_to_string(r->FeatureTag));
tqDebug(" feature '%s'", tag_to_string(r->FeatureTag));
}
}
#endif
@ -2553,7 +2553,7 @@ void QOpenType::selectScript(unsigned int script, const Features *features)
static void dump_string(OTL_Buffer buffer)
{
for (uint i = 0; i < buffer->in_length; ++i) {
qDebug(" %x: cluster=%d", buffer->in_string[i].gindex, buffer->in_string[i].cluster);
tqDebug(" %x: cluster=%d", buffer->in_string[i].gindex, buffer->in_string[i].cluster);
}
}
#endif
@ -2575,13 +2575,13 @@ bool QOpenType::shape(QShaperItem *item, const unsigned int *properties)
}
#ifdef OT_DEBUG
qDebug("-----------------------------------------");
// qDebug("log clusters before shaping:");
tqDebug("-----------------------------------------");
// tqDebug("log clusters before shaping:");
// for (int j = 0; j < length; j++)
// qDebug(" log[%d] = %d", j, item->log_clusters[j]);
qDebug("original glyphs: %p", item->glyphs);
// tqDebug(" log[%d] = %d", j, item->log_clusters[j]);
tqDebug("original glyphs: %p", item->glyphs);
for (int i = 0; i < length; ++i)
qDebug(" glyph=%4x", otl_buffer->in_string[i].gindex);
tqDebug(" glyph=%4x", otl_buffer->in_string[i].gindex);
// dump_string(otl_buffer);
#endif
@ -2594,13 +2594,13 @@ bool QOpenType::shape(QShaperItem *item, const unsigned int *properties)
}
#ifdef OT_DEBUG
// qDebug("log clusters before shaping:");
// tqDebug("log clusters before shaping:");
// for (int j = 0; j < length; j++)
// qDebug(" log[%d] = %d", j, item->log_clusters[j]);
qDebug("shaped glyphs:");
// tqDebug(" log[%d] = %d", j, item->log_clusters[j]);
tqDebug("shaped glyphs:");
for (int i = 0; i < length; ++i)
qDebug(" glyph=%4x", otl_buffer->in_string[i].gindex);
qDebug("-----------------------------------------");
tqDebug(" glyph=%4x", otl_buffer->in_string[i].gindex);
tqDebug("-----------------------------------------");
// dump_string(otl_buffer);
#endif
@ -2643,7 +2643,7 @@ bool QOpenType::positionAndAdd(QShaperItem *item, bool doLogClusters)
int oldCi = 0;
for (unsigned int i = 0; i < otl_buffer->in_length; ++i) {
int ci = otl_buffer->in_string[i].cluster;
// qDebug(" ci[%d] = %d mark=%d, cmb=%d, cs=%d",
// tqDebug(" ci[%d] = %d mark=%d, cmb=%d, cs=%d",
// i, ci, glyphAttributes[i].mark, glyphAttributes[i].combiningClass, glyphAttributes[i].clusterStart);
if (!item->attributes[i].mark && item->attributes[i].clusterStart && ci != oldCi) {
for (int j = oldCi; j < ci; j++)
@ -2657,7 +2657,7 @@ bool QOpenType::positionAndAdd(QShaperItem *item, bool doLogClusters)
}
// calulate the advances for the shaped glyphs
// qDebug("unpositioned: ");
// tqDebug("unpositioned: ");
static_cast<QFontEngineXft *>(item->font)->recalcAdvances(item->num_glyphs, item->glyphs, item->advances);
// positioning code:
@ -2665,9 +2665,9 @@ bool QOpenType::positionAndAdd(QShaperItem *item, bool doLogClusters)
float scale = item->font->scale();
OTL_Position positions = otl_buffer->positions;
// qDebug("positioned glyphs:");
// tqDebug("positioned glyphs:");
for (unsigned int i = 0; i < otl_buffer->in_length; i++) {
// qDebug(" %d:\t orig advance: (%d/%d)\tadv=(%d/%d)\tpos=(%d/%d)\tback=%d\tnew_advance=%d", i,
// tqDebug(" %d:\t orig advance: (%d/%d)\tadv=(%d/%d)\tpos=(%d/%d)\tback=%d\tnew_advance=%d", i,
// glyphs[i].advance.x.toInt(), glyphs[i].advance.y.toInt(),
// (int)(positions[i].x_advance >> 6), (int)(positions[i].y_advance >> 6),
// (int)(positions[i].x_pos >> 6), (int)(positions[i].y_pos >> 6),
@ -2695,7 +2695,7 @@ bool QOpenType::positionAndAdd(QShaperItem *item, bool doLogClusters)
--back;
}
}
// qDebug(" ->\tadv=%d\tpos=(%d/%d)",
// tqDebug(" ->\tadv=%d\tpos=(%d/%d)",
// glyphs[i].advance.x.toInt(), glyphs[i].offset.x.toInt(), glyphs[i].offset.y.toInt());
}
item->has_positioning = TRUE;
@ -2705,18 +2705,18 @@ bool QOpenType::positionAndAdd(QShaperItem *item, bool doLogClusters)
#ifdef OT_DEBUG
// if (doLogClusters) {
// qDebug("log clusters after shaping:");
// tqDebug("log clusters after shaping:");
// for (int j = 0; j < length; j++)
// qDebug(" log[%d] = %d", j, item->log_clusters[j]);
// tqDebug(" log[%d] = %d", j, item->log_clusters[j]);
// }
qDebug("final glyphs:");
tqDebug("final glyphs:");
for (int i = 0; i < (int)otl_buffer->in_length; ++i)
qDebug(" glyph=%4x char_index=%d mark: %d cmp: %d, clusterStart: %d advance=%d offset=%d/%d",
tqDebug(" glyph=%4x char_index=%d mark: %d cmp: %d, clusterStart: %d advance=%d offset=%d/%d",
item->glyphs[i], otl_buffer->in_string[i].cluster, item->attributes[i].mark,
item->attributes[i].combiningClass, item->attributes[i].clusterStart,
item->advances[i],
item->offsets[i].x, item->offsets[i].y);
qDebug("-----------------------------------------");
tqDebug("-----------------------------------------");
#endif
return TRUE;
}

@ -68,7 +68,7 @@
if ( label)
label->show();
else
qDebug("The label has been destroyed");
tqDebug("The label has been destroyed");
\endcode
The program will output \c{The label has been destroyed} rather

@ -427,9 +427,9 @@ QImage::QImage( const char * const xpm[] )
#ifndef QT_NO_IMAGEIO_XPM
read_xpm_image_or_array( 0, xpm, *this );
#else
// We use a qFatal rather than disabling the whole function, as this
// We use a tqFatal rather than disabling the whole function, as this
// constructor may be ambiguous.
qFatal("XPM not supported");
tqFatal("XPM not supported");
#endif
}
@ -588,7 +588,7 @@ QImage QImage::fromMimeSource( const QString &abs_name )
const QMimeSource *m = QMimeSourceFactory::defaultFactory()->data( abs_name );
if ( !m ) {
#if defined(QT_CHECK_STATE)
qWarning("QImage::fromMimeSource: Cannot find image \"%s\" in the mime source factory", abs_name.latin1() );
tqWarning("QImage::fromMimeSource: Cannot find image \"%s\" in the mime source factory", abs_name.latin1() );
#endif
return QImage();
}
@ -944,7 +944,7 @@ QImage QImage::copy(int x, int y, int w, int h, int conversion_flags) const
void QImage::warningIndexRange( const char *func, int i )
{
#if defined(QT_CHECK_RANGE)
qWarning( "QImage::%s: Index %d out of range", func, i );
tqWarning( "QImage::%s: Index %d out of range", func, i );
#else
Q_UNUSED( func )
Q_UNUSED( i )
@ -1091,7 +1091,7 @@ QImage::Endian QImage::systemByteOrder()
if ( sbo == IgnoreEndian ) { // initialize
int ws;
bool be;
qSysInfo( &ws, &be );
tqSysInfo( &ws, &be );
sbo = be ? BigEndian : LittleEndian;
}
return sbo;
@ -1242,7 +1242,7 @@ bool QImage::create( int width, int height, int depth, int numColors,
return FALSE; // invalid parameter(s)
if ( depth == 1 && bitOrder == IgnoreEndian ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QImage::create: Bit order is required for 1 bpp images" );
tqWarning( "QImage::create: Bit order is required for 1 bpp images" );
#endif
return FALSE;
}
@ -1251,7 +1251,7 @@ bool QImage::create( int width, int height, int depth, int numColors,
#if defined(QT_CHECK_RANGE)
if ( depth == 24 )
qWarning( "QImage::create: 24-bpp images no longer supported, "
tqWarning( "QImage::create: 24-bpp images no longer supported, "
"use 32-bpp instead" );
#endif
switch ( depth ) {
@ -2162,9 +2162,9 @@ QImage QImage::convertDepth( int depth, int conversion_flags ) const
else {
#if defined(QT_CHECK_RANGE)
if ( isNull() )
qWarning( "QImage::convertDepth: Image is a null image" );
tqWarning( "QImage::convertDepth: Image is a null image" );
else
qWarning( "QImage::convertDepth: Depth %d not supported", depth );
tqWarning( "QImage::convertDepth: Depth %d not supported", depth );
#endif
}
return image;
@ -2206,7 +2206,7 @@ int QImage::pixelIndex( int x, int y ) const
{
#if defined(QT_CHECK_RANGE)
if ( x < 0 || x >= width() ) {
qWarning( "QImage::pixel: x=%d out of range", x );
tqWarning( "QImage::pixel: x=%d out of range", x );
return -12345;
}
#endif
@ -2225,7 +2225,7 @@ int QImage::pixelIndex( int x, int y ) const
#endif
case 32:
#if defined(QT_CHECK_RANGE)
qWarning( "QImage::pixelIndex: Not applicable for %d-bpp images "
tqWarning( "QImage::pixelIndex: Not applicable for %d-bpp images "
"(no palette)", depth() );
#endif
return 0;
@ -2248,7 +2248,7 @@ QRgb QImage::pixel( int x, int y ) const
{
#if defined(QT_CHECK_RANGE)
if ( x < 0 || x >= width() ) {
qWarning( "QImage::pixel: x=%d out of range", x );
tqWarning( "QImage::pixel: x=%d out of range", x );
return 12345;
}
#endif
@ -2292,7 +2292,7 @@ void QImage::setPixel( int x, int y, uint index_or_rgb )
{
if ( x < 0 || x >= width() ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QImage::setPixel: x=%d out of range", x );
tqWarning( "QImage::setPixel: x=%d out of range", x );
#endif
return;
}
@ -2300,7 +2300,7 @@ void QImage::setPixel( int x, int y, uint index_or_rgb )
uchar * s = scanLine( y );
if ( index_or_rgb > 1) {
#if defined(QT_CHECK_RANGE)
qWarning( "QImage::setPixel: index=%d out of range",
tqWarning( "QImage::setPixel: index=%d out of range",
index_or_rgb );
#endif
} else if ( bitOrder() == QImage::LittleEndian ) {
@ -2317,7 +2317,7 @@ void QImage::setPixel( int x, int y, uint index_or_rgb )
} else if ( depth() == 8 ) {
if (index_or_rgb > (uint)numColors()) {
#if defined(QT_CHECK_RANGE)
qWarning( "QImage::setPixel: index=%d out of range",
tqWarning( "QImage::setPixel: index=%d out of range",
index_or_rgb );
#endif
return;
@ -2789,7 +2789,7 @@ QImage QImage::smoothScale( const QSize& s, ScaleMode mode ) const
{
if ( isNull() ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QImage::smoothScale: Image is a null image" );
tqWarning( "QImage::smoothScale: Image is a null image" );
#endif
return copy();
}
@ -2854,7 +2854,7 @@ QImage QImage::scale( const QSize& s, ScaleMode mode ) const
{
if ( isNull() ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QImage::scale: Image is a null image" );
tqWarning( "QImage::scale: Image is a null image" );
#endif
return copy();
}
@ -2892,7 +2892,7 @@ QImage QImage::scaleWidth( int w ) const
{
if ( isNull() ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QImage::scaleWidth: Image is a null image" );
tqWarning( "QImage::scaleWidth: Image is a null image" );
#endif
return copy();
}
@ -2921,7 +2921,7 @@ QImage QImage::scaleHeight( int h ) const
{
if ( isNull() ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QImage::scaleHeight: Image is a null image" );
tqWarning( "QImage::scaleHeight: Image is a null image" );
#endif
return copy();
}
@ -3336,7 +3336,7 @@ QImage QImage::swapRGB() const
}
#ifndef QT_NO_IMAGE_16_BIT
} else if ( depth() == 16 ) {
qWarning( "QImage::swapRGB not implemented for 16bpp" );
tqWarning( "QImage::swapRGB not implemented for 16bpp" );
#endif
} else
#endif //QT_NO_IMAGE_TRUECOLOR
@ -3562,7 +3562,7 @@ bool QImage::doImageIO( QImageIO* io, int quality ) const
io->setImage( *this );
#if defined(QT_CHECK_RANGE)
if ( quality > 100 || quality < -1 )
qWarning( "QPixmap::save: quality out of range [-1,100]" );
tqWarning( "QPixmap::save: quality out of range [-1,100]" );
#endif
if ( quality >= 0 )
io->setQuality( QMIN(quality,100) );
@ -3899,7 +3899,7 @@ void qt_init_image_handlers() // initialize image handlers
imageHandlers = new QIHList;
Q_CHECK_PTR( imageHandlers );
imageHandlers->setAutoDelete( TRUE );
qAddPostRoutine( cleanup );
tqAddPostRoutine( cleanup );
#ifndef QT_NO_IMAGEIO_BMP
QImageIO::defineIOHandler( "BMP", "^BM", 0,
read_bmp_image, write_bmp_image );
@ -4199,7 +4199,7 @@ void QImageIO::setParameters( const char *parameters )
{
if ( d && d->parameters )
delete [] (char*)d->parameters;
d->parameters = qstrdup( parameters );
d->parameters = tqstrdup( parameters );
}
/*!
@ -4502,7 +4502,7 @@ bool QImageIO::write()
}
if ( !h || !h->write_image ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QImageIO::write: No such image format handler: %s",
tqWarning( "QImageIO::write: No such image format handler: %s",
format() );
#endif
return FALSE;
@ -4637,19 +4637,19 @@ bool read_dib( QDataStream& s, int offset, int startpos, QImage& image )
if ( d->atEnd() ) // end of stream/file
return FALSE;
#if 0
qDebug( "offset...........%d", offset );
qDebug( "startpos.........%d", startpos );
qDebug( "biSize...........%d", bi.biSize );
qDebug( "biWidth..........%d", bi.biWidth );
qDebug( "biHeight.........%d", bi.biHeight );
qDebug( "biPlanes.........%d", bi.biPlanes );
qDebug( "biBitCount.......%d", bi.biBitCount );
qDebug( "biCompression....%d", bi.biCompression );
qDebug( "biSizeImage......%d", bi.biSizeImage );
qDebug( "biXPelsPerMeter..%d", bi.biXPelsPerMeter );
qDebug( "biYPelsPerMeter..%d", bi.biYPelsPerMeter );
qDebug( "biClrUsed........%d", bi.biClrUsed );
qDebug( "biClrImportant...%d", bi.biClrImportant );
tqDebug( "offset...........%d", offset );
tqDebug( "startpos.........%d", startpos );
tqDebug( "biSize...........%d", bi.biSize );
tqDebug( "biWidth..........%d", bi.biWidth );
tqDebug( "biHeight.........%d", bi.biHeight );
tqDebug( "biPlanes.........%d", bi.biPlanes );
tqDebug( "biBitCount.......%d", bi.biBitCount );
tqDebug( "biCompression....%d", bi.biCompression );
tqDebug( "biSizeImage......%d", bi.biSizeImage );
tqDebug( "biXPelsPerMeter..%d", bi.biXPelsPerMeter );
tqDebug( "biYPelsPerMeter..%d", bi.biYPelsPerMeter );
tqDebug( "biClrUsed........%d", bi.biClrUsed );
tqDebug( "biClrImportant...%d", bi.biClrImportant );
#endif
int w = bi.biWidth, h = bi.biHeight, nbits = bi.biBitCount;
int t = bi.biSize, comp = bi.biCompression;
@ -5758,7 +5758,7 @@ static void read_xpm_image_or_array( QImageIO * iio, const char * const * source
for( currentColor=0; currentColor < ncols; ++currentColor ) {
if ( !read_xpm_string( buf, d, source, index ) ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QImage: XPM color specification missing");
tqWarning( "QImage: XPM color specification missing");
#endif
return;
}
@ -5769,7 +5769,7 @@ static void read_xpm_image_or_array( QImageIO * iio, const char * const * source
i = nextColorSpec(buf);
if ( i < 0 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QImage: XPM color specification is missing: %s", buf.data());
tqWarning( "QImage: XPM color specification is missing: %s", buf.data());
#endif
return; // no c/g/g4/m/s specification at all
}
@ -5809,7 +5809,7 @@ static void read_xpm_image_or_array( QImageIO * iio, const char * const * source
for( int y=0; y<h; y++ ) {
if ( !read_xpm_string( buf, d, source, index ) ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QImage: XPM pixels missing on image line %d", y);
tqWarning( "QImage: XPM pixels missing on image line %d", y);
#endif
return;
}
@ -6478,7 +6478,7 @@ QGfx * QImage::graphicsContext()
int h = qt_screen->mapToDevice( QSize(width(),height()) ).height();
ret=QGfx::createGfx(depth(),bits(),w,h,bytesPerLine());
} else {
qDebug("Trying to create image for null depth");
tqDebug("Trying to create image for null depth");
return 0;
}
if(depth()<=8) {

@ -526,15 +526,15 @@ void QInputContext::sendIMEventInternal( QEvent::Type type,
return;
if ( type == QEvent::IMStart ) {
qDebug( "sending IMStart with %d chars to %p",
tqDebug( "sending IMStart with %d chars to %p",
text.length(), receiver );
event = new QIMEvent( type, text, cursorPosition );
} else if ( type == QEvent::IMEnd ) {
qDebug( "sending IMEnd with %d chars to %p, text=%s",
tqDebug( "sending IMEnd with %d chars to %p, text=%s",
text.length(), receiver, (const char*)text.local8Bit() );
event = new QIMEvent( type, text, cursorPosition );
} else if ( type == QEvent::IMCompose ) {
qDebug( "sending IMCompose to %p with %d chars, cpos=%d, sellen=%d, text=%s",
tqDebug( "sending IMCompose to %p with %d chars, cpos=%d, sellen=%d, text=%s",
receiver, text.length(), cursorPosition, selLength,
(const char*)text.local8Bit() );
event = new QIMComposeEvent( type, text, cursorPosition, selLength );

@ -183,7 +183,7 @@ bool QSharedDoubleBufferCleaner::event( QEvent *e )
}
#ifdef QT_CHECK_STATE
else {
qWarning( "QSharedDoubleBufferCleaner::event: invalid timer event received." );
tqWarning( "QSharedDoubleBufferCleaner::event: invalid timer event received." );
return FALSE;
}
#endif // QT_CHECK_STATE
@ -335,7 +335,7 @@ bool QSharedDoubleBuffer::begin( QPainter* painter, int x, int y, int w, int h )
{
if ( isActive() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSharedDoubleBuffer::begin: Buffer is already active."
tqWarning( "QSharedDoubleBuffer::begin: Buffer is already active."
"\n\tYou must end() the buffer before a second begin()" );
#endif // QT_CHECK_STATE
return FALSE;
@ -390,7 +390,7 @@ bool QSharedDoubleBuffer::begin( QWidget* widget, int x, int y, int w, int h )
{
if ( isActive() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSharedDoubleBuffer::begin: Buffer is already active."
tqWarning( "QSharedDoubleBuffer::begin: Buffer is already active."
"\n\tYou must end() the buffer before a second begin()" );
#endif // QT_CHECK_STATE
return FALSE;
@ -447,7 +447,7 @@ bool QSharedDoubleBuffer::end()
{
if ( ! isActive() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSharedDoubleBuffer::end: Buffer is not active."
tqWarning( "QSharedDoubleBuffer::end: Buffer is not active."
"\n\tYou must call begin() before calling end()." );
#endif // QT_CHECK_STATE
return FALSE;
@ -584,7 +584,7 @@ void QSharedDoubleBuffer::releasePixmap()
// sanity check
#ifdef QT_CHECK_STATE
qWarning( "QSharedDoubleBuffer::releasePixmap: internal error."
tqWarning( "QSharedDoubleBuffer::releasePixmap: internal error."
"\n\t%p does not own shared pixmap, %p does.",
(void*)this, (void*)qdb_owner );
#endif // QT_CHECK_STATE

@ -80,7 +80,7 @@ void my_error_exit (j_common_ptr cinfo)
my_error_mgr* myerr = (my_error_mgr*) cinfo->err;
char buffer[JMSG_LENGTH_MAX];
(*cinfo->err->format_message)(cinfo, buffer);
qWarning(buffer);
tqWarning(buffer);
longjmp(myerr->setjmp_buffer, 1);
}
@ -249,13 +249,13 @@ void read_jpeg_image(QImageIO* iio)
} else if ( sModeQStr == "ScaleMax" ) {
sMode = QImage::ScaleMax;
} else {
qDebug("read_jpeg_image: invalid scale mode \"%s\", see QImage::ScaleMode documentation", sModeStr);
tqDebug("read_jpeg_image: invalid scale mode \"%s\", see QImage::ScaleMode documentation", sModeStr);
sMode = QImage::ScaleFree;
}
// qDebug( "Parameters ask to scale the image to %i x %i ScaleMode: %s", sWidth, sHeight, sModeStr );
// tqDebug( "Parameters ask to scale the image to %i x %i ScaleMode: %s", sWidth, sHeight, sModeStr );
scaleSize( sWidth, sHeight, cinfo.output_width, cinfo.output_height, sMode );
// qDebug( "Scaling the jpeg to %i x %i", sWidth, sHeight, sModeStr );
// tqDebug( "Scaling the jpeg to %i x %i", sWidth, sHeight, sModeStr );
bool created = FALSE;
if ( cinfo.output_components == 3 || cinfo.output_components == 4) {

@ -300,7 +300,7 @@ void QKeySequence::setKey( int key, int index )
{
#ifdef QT_CHECK_STATE
if ( 0 > index && 4 < index ) {
qWarning( "QKeySequence::setKey: index %u out of range", index );
tqWarning( "QKeySequence::setKey: index %u out of range", index );
return;
}
#endif // QT_CHECK_STATE
@ -620,7 +620,7 @@ int QKeySequence::operator[]( uint index ) const
{
#ifdef QT_CHECK_STATE
if ( index > 4 ) {
qWarning( "QKeySequence::operator[]: index %u out of range", index );
tqWarning( "QKeySequence::operator[]: index %u out of range", index );
return 0;
}
#endif // QT_CHECK_STATE
@ -707,7 +707,7 @@ QDataStream &operator>>( QDataStream &s, QKeySequence &keysequence )
#ifdef QT_CHECK_STATE
if ( 1 != list.count() && 4 != list.count() ) {
qWarning( "Invalid QKeySequence data in the datastream." );
tqWarning( "Invalid QKeySequence data in the datastream." );
return s;
}
#endif

@ -468,9 +468,9 @@ void QGridLayoutData::add( QGridBox *box, int row1, int row2, int col1,
{
#ifdef QT_CHECK_RANGE
if ( row2 >= 0 && row2 < row1 )
qWarning( "QGridLayout: Multi-cell fromRow greater than toRow" );
tqWarning( "QGridLayout: Multi-cell fromRow greater than toRow" );
if ( col2 >= 0 && col2 < col1 )
qWarning( "QGridLayout: Multi-cell fromCol greater than toCol" );
tqWarning( "QGridLayout: Multi-cell fromCol greater than toCol" );
#endif
if ( row1 == row2 && col1 == col2 ) {
add( box, row1, col1 );
@ -1216,7 +1216,7 @@ static bool checkWidget( QLayout *l, QWidget *w )
{
if ( !w ) {
#if defined(QT_CHECK_STATE)
qWarning( "QLayout: Cannot add null widget to %s/%s", l->className(),
tqWarning( "QLayout: Cannot add null widget to %s/%s", l->className(),
l->name() );
#endif
return FALSE;
@ -1224,12 +1224,12 @@ static bool checkWidget( QLayout *l, QWidget *w )
if ( w->parentWidget() != l->mainWidget() && l->mainWidget() ) {
#if defined(QT_CHECK_STATE)
if ( w->parentWidget() )
qWarning( "QLayout: Adding %s/%s (child of %s/%s) to layout for "
tqWarning( "QLayout: Adding %s/%s (child of %s/%s) to layout for "
"%s/%s", w->className(), w->name(),
w->parentWidget()->className(), w->parentWidget()->name(),
l->mainWidget()->className(), l->mainWidget()->name() );
else
qWarning( "QLayout: Adding %s/%s (top-level widget) to layout for"
tqWarning( "QLayout: Adding %s/%s (top-level widget) to layout for"
" %s/%s", w->className(), w->name(),
l->mainWidget()->className(), l->mainWidget()->name() );
#endif
@ -1264,7 +1264,7 @@ void QGridLayout::addWidget( QWidget *w, int row, int col, int alignment )
return;
if ( row < 0 || col < 0 ) {
#if defined(QT_CHECK_STATE)
qWarning( "QGridLayout: Cannot add %s/%s to %s/%s at row %d col %d",
tqWarning( "QGridLayout: Cannot add %s/%s to %s/%s at row %d col %d",
w->className(), w->name(), className(), name(), row, col );
#endif
return;

@ -73,7 +73,7 @@
\endcode
This code will only work if the QLocalFs class is registered; to
register the class, you must call qInitNetworkProtocols() before
register the class, you must call tqInitNetworkProtocols() before
using a QUrlOperator with QLocalFs.
If you really need to use QLocalFs directly, don't forget
@ -122,7 +122,7 @@ static int convertPermissions(QFileInfo *fi)
void QLocalFs::operationListChildren( QNetworkOperation *op )
{
#ifdef QLOCALFS_DEBUG
qDebug( "QLocalFs: operationListChildren" );
tqDebug( "QLocalFs: operationListChildren" );
#endif
op->setState( StInProgress );
@ -171,7 +171,7 @@ void QLocalFs::operationListChildren( QNetworkOperation *op )
void QLocalFs::operationMkDir( QNetworkOperation *op )
{
#ifdef QLOCALFS_DEBUG
qDebug( "QLocalFs: operationMkDir" );
tqDebug( "QLocalFs: operationMkDir" );
#endif
op->setState( StInProgress );
QString dirname = op->arg( 0 );
@ -202,7 +202,7 @@ void QLocalFs::operationMkDir( QNetworkOperation *op )
void QLocalFs::operationRemove( QNetworkOperation *op )
{
#ifdef QLOCALFS_DEBUG
qDebug( "QLocalFs: operationRemove" );
tqDebug( "QLocalFs: operationRemove" );
#endif
op->setState( StInProgress );
QString name = QUrl( op->arg( 0 ) ).path();
@ -236,7 +236,7 @@ void QLocalFs::operationRemove( QNetworkOperation *op )
void QLocalFs::operationRename( QNetworkOperation *op )
{
#ifdef QLOCALFS_DEBUG
qDebug( "QLocalFs: operationRename" );
tqDebug( "QLocalFs: operationRename" );
#endif
op->setState( StInProgress );
QString oldname = op->arg( 0 );
@ -263,7 +263,7 @@ void QLocalFs::operationRename( QNetworkOperation *op )
void QLocalFs::operationGet( QNetworkOperation *op )
{
#ifdef QLOCALFS_DEBUG
qDebug( "QLocalFs: operationGet" );
tqDebug( "QLocalFs: operationGet" );
#endif
op->setState( StInProgress );
QString from = QUrl( op->arg( 0 ) ).path();
@ -271,7 +271,7 @@ void QLocalFs::operationGet( QNetworkOperation *op )
QFile f( from );
if ( !f.open( IO_ReadOnly ) ) {
#ifdef QLOCALFS_DEBUG
qDebug( "QLocalFs: could not open %s", from.latin1() );
tqDebug( "QLocalFs: could not open %s", from.latin1() );
#endif
QString msg = tr( "Could not open\n%1" ).arg( from );
op->setState( StFailed );
@ -291,7 +291,7 @@ void QLocalFs::operationGet( QNetworkOperation *op )
emit data( s, op );
emit dataTransferProgress( f.size(), f.size(), op );
#ifdef QLOCALFS_DEBUG
qDebug( "QLocalFs: got all %d bytes at once", f.size() );
tqDebug( "QLocalFs: got all %d bytes at once", f.size() );
#endif
} else {
s.resize( blockSize );
@ -317,7 +317,7 @@ void QLocalFs::operationGet( QNetworkOperation *op )
if (!that)
return;
#ifdef QLOCALFS_DEBUG
qDebug( "QLocalFs: got all %d bytes step by step", f.size() );
tqDebug( "QLocalFs: got all %d bytes step by step", f.size() );
#endif
emit dataTransferProgress( f.size(), f.size(), op );
}
@ -334,7 +334,7 @@ void QLocalFs::operationGet( QNetworkOperation *op )
void QLocalFs::operationPut( QNetworkOperation *op )
{
#ifdef QLOCALFS_DEBUG
qDebug( "QLocalFs: operationPut" );
tqDebug( "QLocalFs: operationPut" );
#endif
op->setState( StInProgress );
QString to = QUrl( op->arg( 0 ) ).path();

@ -138,9 +138,9 @@ QLock::QLock( const QString &filename, char id, bool create )
}
#endif
if ( data->id == -1 ) {
qWarning( "Cannot %s semaphore %s \'%c\'",
tqWarning( "Cannot %s semaphore %s \'%c\'",
create ? "create" : "get", filename.latin1(), id );
qDebug("Error %d %s\n",errno,strerror(errno));
tqDebug("Error %d %s\n",errno,strerror(errno));
}
#endif
}
@ -211,7 +211,7 @@ void QLock::lock( Type t )
for( int rv=1; rv; ) {
rv = flock(data->id, op);
if (rv == -1 && errno != EINTR)
qDebug("Semop lock failure %s",strerror(errno));
tqDebug("Semop lock failure %s",strerror(errno));
}
#else
sembuf sops;
@ -230,7 +230,7 @@ void QLock::lock( Type t )
do {
rv = semop(data->id,&sops,1);
if (rv == -1 && errno != EINTR)
qDebug("Semop lock failure %s",strerror(errno));
tqDebug("Semop lock failure %s",strerror(errno));
} while ( rv == -1 && errno == EINTR );
#endif
}
@ -256,7 +256,7 @@ void QLock::unlock()
for( int rv=1; rv; ) {
rv = flock(data->id, LOCK_UN);
if (rv == -1 && errno != EINTR)
qDebug("Semop lock failure %s",strerror(errno));
tqDebug("Semop lock failure %s",strerror(errno));
}
#else
sembuf sops;
@ -270,12 +270,12 @@ void QLock::unlock()
do {
rv = semop(data->id,&sops,1);
if (rv == -1 && errno != EINTR)
qDebug("Semop unlock failure %s",strerror(errno));
tqDebug("Semop unlock failure %s",strerror(errno));
} while ( rv == -1 && errno == EINTR );
#endif
}
} else {
qDebug("Unlock without corresponding lock");
tqDebug("Unlock without corresponding lock");
}
#endif
}

@ -423,7 +423,7 @@ int QMetaObject::findSignal( const char* n, bool super ) const
if ( md ) {
#if defined(QT_CHECK_RANGE)
if ( offset != -1 ) {
qWarning( "QMetaObject::findSignal:%s: Conflict with %s::%s",
tqWarning( "QMetaObject::findSignal:%s: Conflict with %s::%s",
className(), mo->className(), n );
return offset;
}
@ -1245,7 +1245,7 @@ void QMetaObjectCleanUp::setMetaObject( QMetaObject *&mo )
{
#if defined(QT_CHECK_RANGE)
if ( metaObject )
qWarning( "QMetaObjectCleanUp::setMetaObject: Double use of QMetaObjectCleanUp!" );
tqWarning( "QMetaObjectCleanUp::setMetaObject: Double use of QMetaObjectCleanUp!" );
#endif
metaObject = &mo;
}

@ -139,7 +139,7 @@ bool QMimeSource::provides(const char* mimeType) const
{
const char* fmt;
for (int i=0; (fmt = format(i)); i++) {
if ( !qstricmp(mimeType,fmt) )
if ( !tqstricmp(mimeType,fmt) )
return TRUE;
}
return FALSE;

@ -122,7 +122,7 @@ public:
mng_int32 iExtra2,
mng_pchar zErrortext )
{
qWarning("MNG error %d: %s; chunk %c%c%c%c; subcode %d:%d",
tqWarning("MNG error %d: %s; chunk %c%c%c%c; subcode %d:%d",
iErrorcode, zErrortext ? zErrortext : "",
(iChunkname>>24)&0xff,
(iChunkname>>16)&0xff,
@ -456,7 +456,7 @@ void qInitMngIO()
done = TRUE;
#ifndef QT_NO_ASYNC_IMAGE_IO
globalMngFormatTypeObject = new QMNGFormatType;
qAddPostRoutine( qCleanupMngIO );
tqAddPostRoutine( qCleanupMngIO );
#endif
}
}

@ -597,12 +597,12 @@ static DndTargetsTable TargetsTable(Display *display)
&type, &format, &size, &bytes_after,
(unsigned char **) &target_prop) != Success) ||
type == None) {
qWarning("QMotifDND: cannot get property on motif window");
tqWarning("QMotifDND: cannot get property on motif window");
return 0;
}
if (target_prop->protocol_version != DND_PROTOCOL_VERSION) {
qWarning("QMotifDND: protocol mismatch");
tqWarning("QMotifDND: protocol mismatch");
}
if (target_prop->byte_order != DndByteOrder()) {
@ -726,7 +726,7 @@ QByteArray qt_motifdnd_obtain_data( const char *mimeType )
QByteArray result;
// try to convert the selection to the requested property
// qDebug( "trying to convert to '%s'", mimeType );
// tqDebug( "trying to convert to '%s'", mimeType );
int n=0;
const char* f;
@ -735,18 +735,18 @@ QByteArray qt_motifdnd_obtain_data( const char *mimeType )
if ( !f )
return result;
n++;
} while( qstricmp( mimeType, f ) );
} while( tqstricmp( mimeType, f ) );
// found one
Atom conversion_type;
if ( qstrnicmp( f, "text/", 5 ) == 0 ) {
if ( tqstrnicmp( f, "text/", 5 ) == 0 ) {
// always convert text to XA_STRING for compatibility with
// prior Qt versions
conversion_type = XA_STRING;
} else {
conversion_type = *qt_xdnd_str_to_atom( f );
// qDebug( "found format '%s' 0x%lx '%s'", f, conversion_type,
// tqDebug( "found format '%s' 0x%lx '%s'", f, conversion_type,
// qt_xdnd_atom_to_str( conversion_type ) );
}

@ -51,9 +51,9 @@
//#define QNETWORKPROTOCOL_DEBUG
#define NETWORK_OP_DELAY 1000
extern Q_EXPORT QNetworkProtocolDict *qNetworkProtocolRegister;
extern Q_EXPORT QNetworkProtocolDict *tqNetworkProtocolRegister;
QNetworkProtocolDict *qNetworkProtocolRegister = 0;
QNetworkProtocolDict *tqNetworkProtocolRegister = 0;
class QNetworkProtocolPrivate
{
@ -542,7 +542,7 @@ int QNetworkProtocol::supportedOperations() const
void QNetworkProtocol::addOperation( QNetworkOperation *op )
{
#ifdef QNETWORKPROTOCOL_DEBUG
qDebug( "QNetworkOperation: addOperation: %p %d", op, op->operation() );
tqDebug( "QNetworkOperation: addOperation: %p %d", op, op->operation() );
#endif
d->operationQueue.enqueue( op );
if ( !d->opInProgress )
@ -566,12 +566,12 @@ void QNetworkProtocol::addOperation( QNetworkOperation *op )
void QNetworkProtocol::registerNetworkProtocol( const QString &protocol,
QNetworkProtocolFactoryBase *protocolFactory )
{
if ( !qNetworkProtocolRegister ) {
qNetworkProtocolRegister = new QNetworkProtocolDict;
if ( !tqNetworkProtocolRegister ) {
tqNetworkProtocolRegister = new QNetworkProtocolDict;
QNetworkProtocol::registerNetworkProtocol( "file", new QNetworkProtocolFactory< QLocalFs > );
}
qNetworkProtocolRegister->insert( protocol, protocolFactory );
tqNetworkProtocolRegister->insert( protocol, protocolFactory );
}
/*!
@ -596,15 +596,15 @@ void QNetworkProtocol::registerNetworkProtocol( const QString &protocol,
QNetworkProtocol *QNetworkProtocol::getNetworkProtocol( const QString &protocol )
{
if ( !qNetworkProtocolRegister ) {
qNetworkProtocolRegister = new QNetworkProtocolDict;
if ( !tqNetworkProtocolRegister ) {
tqNetworkProtocolRegister = new QNetworkProtocolDict;
QNetworkProtocol::registerNetworkProtocol( "file", new QNetworkProtocolFactory< QLocalFs > );
}
if ( protocol.isNull() )
return 0;
QNetworkProtocolFactoryBase *factory = qNetworkProtocolRegister->find( protocol );
QNetworkProtocolFactoryBase *factory = tqNetworkProtocolRegister->find( protocol );
if ( factory )
return factory->createObject();
@ -619,10 +619,10 @@ QNetworkProtocol *QNetworkProtocol::getNetworkProtocol( const QString &protocol
bool QNetworkProtocol::hasOnlyLocalFileSystem()
{
if ( !qNetworkProtocolRegister )
if ( !tqNetworkProtocolRegister )
return FALSE;
QDictIterator< QNetworkProtocolFactoryBase > it( *qNetworkProtocolRegister );
QDictIterator< QNetworkProtocolFactoryBase > it( *tqNetworkProtocolRegister );
for ( ; it.current(); ++it )
if ( it.currentKey() != "file" )
return FALSE;
@ -637,7 +637,7 @@ bool QNetworkProtocol::hasOnlyLocalFileSystem()
void QNetworkProtocol::startOps()
{
#ifdef QNETWORKPROTOCOL_DEBUG
qDebug( "QNetworkOperation: start processing operations" );
tqDebug( "QNetworkOperation: start processing operations" );
#endif
processNextOperation( 0 );
}
@ -826,7 +826,7 @@ void QNetworkProtocol::operationPutChunk( QNetworkOperation * )
void QNetworkProtocol::processNextOperation( QNetworkOperation *old )
{
#ifdef QNETWORKPROTOCOL_DEBUG
qDebug( "QNetworkOperation: process next operation, old: %p", old );
tqDebug( "QNetworkOperation: process next operation, old: %p", old );
#endif
d->removeTimer->stop();
@ -949,7 +949,7 @@ void QNetworkProtocol::removeMe()
{
if ( d->autoDelete ) {
#ifdef QNETWORKPROTOCOL_DEBUG
qDebug( "QNetworkOperation: autodelete of QNetworkProtocol %p", this );
tqDebug( "QNetworkOperation: autodelete of QNetworkProtocol %p", this );
#endif
delete d->url; // destructor deletes the network protocol
}

@ -335,7 +335,7 @@ static void cleanup_object_trees()
static void ensure_object_trees()
{
object_trees = new QObjectList;
qAddPostRoutine( cleanup_object_trees );
tqAddPostRoutine( cleanup_object_trees );
}
static void insert_tree( QObject* obj )
@ -418,7 +418,7 @@ QObject::QObject( QObject *parent, const char *name )
blockSig( FALSE ), // not blocking signals
wasDeleted( FALSE ), // double-delete catcher
isTree( FALSE ), // no tree yet
objname( name ? qstrdup(name) : 0 ), // set object name
objname( name ? tqstrdup(name) : 0 ), // set object name
parentObj( 0 ), // no parent yet. It is set by insertChild()
childObjects( 0 ), // no children yet
connections( 0 ), // no connections yet
@ -463,7 +463,7 @@ QObject::~QObject()
{
if ( wasDeleted ) {
#if defined(QT_DEBUG)
qWarning( "Double QObject deletion detected." );
tqWarning( "Double QObject deletion detected." );
#endif
return;
}
@ -643,12 +643,12 @@ void *qt_inheritedBy( QMetaObject *superClass, const QObject *object )
future.
If the object does not have a name, the name() function returns
"unnamed", so printf() (used in qDebug()) will not be asked to
"unnamed", so printf() (used in tqDebug()) will not be asked to
output a null pointer. If you want a null pointer to be returned
for unnamed objects, you can call name( 0 ).
\code
qDebug( "MyClass::setPrecision(): (%s) invalid precision %f",
tqDebug( "MyClass::setPrecision(): (%s) invalid precision %f",
name(), newPrecision );
\endcode
@ -668,7 +668,7 @@ void QObject::setName( const char *name )
{
if ( objname )
delete [] (char*) objname;
objname = name ? qstrdup(name) : 0;
objname = name ? tqstrdup(name) : 0;
}
/*!
@ -756,7 +756,7 @@ bool QObject::event( QEvent *e )
{
#if defined(QT_CHECK_NULL)
if ( e == 0 )
qWarning( "QObject::event: Null events are not permitted" );
tqWarning( "QObject::event: Null events are not permitted" );
#endif
if ( eventFilters ) { // try filters
if ( activate_filters(e) ) // stopped by a filter
@ -883,7 +883,7 @@ void QObject::customEvent( QCustomEvent * )
if ( obj == textEdit ) {
if ( e->type() == QEvent::KeyPress ) {
QKeyEvent *k = (QKeyEvent*)ev;
qDebug( "Ate key press %d", k->key() );
tqDebug( "Ate key press %d", k->key() );
return TRUE;
} else {
return FALSE;
@ -1005,7 +1005,7 @@ void QObject::blockSignals( bool block )
void MyObject::timerEvent( QTimerEvent *e )
{
qDebug( "timer event, id %d", e->timerId() );
tqDebug( "timer event, id %d", e->timerId() );
}
\endcode
@ -1282,7 +1282,7 @@ void QObject::insertChild( QObject *obj )
if ( obj->parentObj && obj->parentObj != this ) {
#if defined(QT_CHECK_STATE)
if ( obj->parentObj != this && obj->isWidgetType() )
qWarning( "QObject::insertChild: Cannot reparent a widget, "
tqWarning( "QObject::insertChild: Cannot reparent a widget, "
"use QWidget::reparent() instead" );
#endif
obj->parentObj->removeChild( obj );
@ -1293,7 +1293,7 @@ void QObject::insertChild( QObject *obj )
Q_CHECK_PTR( childObjects );
} else if ( obj->parentObj == this ) {
#if defined(QT_CHECK_STATE)
qWarning( "QObject::insertChild: Object %s::%s already in list",
tqWarning( "QObject::insertChild: Object %s::%s already in list",
obj->className(), obj->name( "unnamed" ) );
#endif
return;
@ -1368,7 +1368,7 @@ void QObject::removeChild( QObject *obj )
if ( e->type() == QEvent::KeyPress ) {
// special processing for key press
QKeyEvent *k = (QKeyEvent *)e;
qDebug( "Ate key press %d", k->key() );
tqDebug( "Ate key press %d", k->key() );
return TRUE; // eat event
} else {
// standard event processing
@ -1453,10 +1453,10 @@ static bool check_signal_macro( const QObject *sender, const char *signal,
int sigcode = (int)(*signal) - '0';
if ( sigcode != QSIGNAL_CODE ) {
if ( sigcode == QSLOT_CODE )
qWarning( "QObject::%s: Attempt to %s non-signal %s::%s",
tqWarning( "QObject::%s: Attempt to %s non-signal %s::%s",
func, op, sender->className(), signal+1 );
else
qWarning( "QObject::%s: Use the SIGNAL macro to %s %s::%s",
tqWarning( "QObject::%s: Use the SIGNAL macro to %s %s::%s",
func, op, sender->className(), signal );
return FALSE;
}
@ -1467,7 +1467,7 @@ static bool check_member_code( int code, const QObject *object,
const char *member, const char *func )
{
if ( code != QSLOT_CODE && code != QSIGNAL_CODE ) {
qWarning( "QObject::%s: Use the SLOT or SIGNAL macro to "
tqWarning( "QObject::%s: Use the SLOT or SIGNAL macro to "
"%s %s::%s", func, func, object->className(), member );
return FALSE;
}
@ -1483,10 +1483,10 @@ static void err_member_notfound( int code, const QObject *object,
case QSIGNAL_CODE: type = "signal"; break;
}
if ( strchr(member,')') == 0 ) // common typing mistake
qWarning( "QObject::%s: Parentheses expected, %s %s::%s",
tqWarning( "QObject::%s: Parentheses expected, %s %s::%s",
func, type, object->className(), member );
else
qWarning( "QObject::%s: No such %s %s::%s",
tqWarning( "QObject::%s: No such %s %s::%s",
func, type, object->className(), member );
}
@ -1497,9 +1497,9 @@ static void err_info_about_objects( const char * func,
{
const char * a = sender->name(), * b = receiver->name();
if ( a )
qWarning( "QObject::%s: (sender name: '%s')", func, a );
tqWarning( "QObject::%s: (sender name: '%s')", func, a );
if ( b )
qWarning( "QObject::%s: (receiver name: '%s')", func, b );
tqWarning( "QObject::%s: (receiver name: '%s')", func, b );
}
static void err_info_about_candidates( int code,
@ -1524,7 +1524,7 @@ static void err_info_about_candidates( int code,
break;
}
if ( rm ) {
qWarning("QObject::%s: Candidate: %s", func, newname.data());
tqWarning("QObject::%s: Candidate: %s", func, newname.data());
}
}
}
@ -1748,7 +1748,7 @@ bool QObject::connect( const QObject *sender, const char *signal,
{
#if defined(QT_CHECK_NULL)
if ( sender == 0 || receiver == 0 || signal == 0 || member == 0 ) {
qWarning( "QObject::connect: Cannot connect %s::%s to %s::%s",
tqWarning( "QObject::connect: Cannot connect %s::%s to %s::%s",
sender ? sender->className() : "(null)",
signal ? signal+1 : "(null)",
receiver ? receiver->className() : "(null)",
@ -1825,7 +1825,7 @@ bool QObject::connect( const QObject *sender, const char *signal,
}
#if defined(QT_CHECK_RANGE)
if ( !s->checkConnectArgs(signal,receiver,member) ) {
qWarning( "QObject::connect: Incompatible sender/receiver arguments"
tqWarning( "QObject::connect: Incompatible sender/receiver arguments"
"\n\t%s::%s --> %s::%s",
s->className(), signal,
r->className(), member );
@ -1849,7 +1849,7 @@ bool QObject::connect( const QObject *sender, const char *signal,
|| ( QUType::isEqual( sm->method->parameters[si-1].type, &static_QUType_varptr )
&& QUType::isEqual( rm->method->parameters[ri-1].type, &static_QUType_ptr ) ) )
continue; // varptr got introduced in 3.1 and is binary compatible with ptr
qWarning( "QObject::connect: Incompatible sender/receiver marshalling"
tqWarning( "QObject::connect: Incompatible sender/receiver marshalling"
"\n\t%s::%s --> %s::%s",
s->className(), signal,
r->className(), member );
@ -1989,7 +1989,7 @@ bool QObject::disconnect( const QObject *sender, const char *signal,
{
#if defined(QT_CHECK_NULL)
if ( sender == 0 || (receiver == 0 && member != 0) ) {
qWarning( "QObject::disconnect: Unexpected null parameter" );
tqWarning( "QObject::disconnect: Unexpected null parameter" );
return FALSE;
}
#endif
@ -2061,7 +2061,7 @@ bool QObject::disconnect( const QObject *sender, const char *signal,
}
if ( signal_index < 0 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QObject::disconnect: No such signal %s::%s",
tqWarning( "QObject::disconnect: No such signal %s::%s",
s->className(), signal );
#endif
return FALSE;
@ -2504,7 +2504,7 @@ static void dumpRecursive( int level, QObject *object )
flags += 'I';
}
}
qDebug( "%s%s::%s %s", (const char*)buf, object->className(), name,
tqDebug( "%s%s::%s %s", (const char*)buf, object->className(), name,
flags.latin1() );
if ( object->children() ) {
QObjectListIt it(*object->children());
@ -2546,41 +2546,41 @@ void QObject::dumpObjectTree()
void QObject::dumpObjectInfo()
{
#if defined(QT_DEBUG)
qDebug( "OBJECT %s::%s", className(), name( "unnamed" ) );
tqDebug( "OBJECT %s::%s", className(), name( "unnamed" ) );
int n = 0;
qDebug( " SIGNALS OUT" );
tqDebug( " SIGNALS OUT" );
if ( connections ) {
QConnectionList *clist;
for ( uint i = 0; i < connections->size(); i++ ) {
if ( ( clist = connections->at( i ) ) ) {
qDebug( "\t%s", metaObject()->signal( i, TRUE )->name );
tqDebug( "\t%s", metaObject()->signal( i, TRUE )->name );
n++;
register QConnection *c;
QConnectionListIt cit(*clist);
while ( (c=cit.current()) ) {
++cit;
qDebug( "\t --> %s::%s %s", c->object()->className(),
tqDebug( "\t --> %s::%s %s", c->object()->className(),
c->object()->name( "unnamed" ), c->memberName() );
}
}
}
}
if ( n == 0 )
qDebug( "\t<None>" );
tqDebug( "\t<None>" );
qDebug( " SIGNALS IN" );
tqDebug( " SIGNALS IN" );
n = 0;
if ( senderObjects ) {
QObject *sender = senderObjects->first();
while ( sender ) {
qDebug( "\t%s::%s",
tqDebug( "\t%s::%s",
sender->className(), sender->name( "unnamed" ) );
n++;
sender = senderObjects->next();
}
}
if ( n == 0 )
qDebug( "\t<None>" );
tqDebug( "\t<None>" );
#endif
}
@ -2610,7 +2610,7 @@ bool QObject::setProperty( const char *name, const QVariant& value )
int id = meta->findProperty( name, TRUE );
const QMetaProperty* p = meta->property( id, TRUE );
if ( !p || !p->isValid() || !p->writable() ) {
qWarning( "%s::setProperty( \"%s\", value ) failed: property invalid, read-only or does not exist",
tqWarning( "%s::setProperty( \"%s\", value ) failed: property invalid, read-only or does not exist",
className(), name );
return FALSE;
}
@ -2662,7 +2662,7 @@ QVariant QObject::property( const char *name ) const
int id = meta->findProperty( name, TRUE );
const QMetaProperty* p = meta->property( id, TRUE );
if ( !p || !p->isValid() ) {
qWarning( "%s::property( \"%s\" ) failed: property invalid or does not exist",
tqWarning( "%s::property( \"%s\" ) failed: property invalid or does not exist",
className(), name );
return v;
}

@ -133,7 +133,7 @@ QPaintDevice::QPaintDevice( uint devflags )
{
if ( !qApp ) { // global constructor
#if defined(QT_CHECK_STATE)
qFatal( "QPaintDevice: Must construct a QApplication before a "
tqFatal( "QPaintDevice: Must construct a QApplication before a "
"QPaintDevice" );
#endif
return;
@ -153,7 +153,7 @@ QPaintDevice::~QPaintDevice()
{
#if defined(QT_CHECK_STATE)
if ( paintingActive() )
qWarning( "QPaintDevice: Cannot destroy paint device that is being "
tqWarning( "QPaintDevice: Cannot destroy paint device that is being "
"painted" );
#endif
if ( x11Data && x11Data->deref() ) {
@ -699,7 +699,7 @@ int QPaintDevice::x11AppDpiY()
bool QPaintDevice::cmd( int, QPainter *, QPDevCmdParam * )
{
#if defined(QT_CHECK_STATE)
qWarning( "QPaintDevice::cmd: Device has no command interface" );
tqWarning( "QPaintDevice::cmd: Device has no command interface" );
#endif
return FALSE;
}
@ -715,7 +715,7 @@ bool QPaintDevice::cmd( int, QPainter *, QPDevCmdParam * )
int QPaintDevice::metric( int ) const
{
#if defined(QT_CHECK_STATE)
qWarning( "QPaintDevice::metrics: Device has no metric information" );
tqWarning( "QPaintDevice::metrics: Device has no metric information" );
#endif
return 0;
}
@ -778,7 +778,7 @@ static GC cache_mask_gc( Display *dpy, Drawable hd, int mask_no, Pixmap mask )
{
if ( !init_mask_gc ) { // first time initialization
init_mask_gc = TRUE;
qAddPostRoutine( cleanup_mask_gc );
tqAddPostRoutine( cleanup_mask_gc );
for ( int i=0; i<max_mask_gcs; i++ )
gc_vec[i].gc = 0;
}
@ -885,7 +885,7 @@ void bitBlt( QPaintDevice *dst, int dx, int dy,
bitBlt( pm, 0, 0, src, sx, sy, sw, sh );
} else {
#if defined(QT_CHECK_RANGE)
qWarning( "bitBlt: Cannot bitBlt from device" );
tqWarning( "bitBlt: Cannot bitBlt from device" );
#endif
return;
}
@ -906,7 +906,7 @@ void bitBlt( QPaintDevice *dst, int dx, int dy,
break;
default:
#if defined(QT_CHECK_RANGE)
qWarning( "bitBlt: Cannot bitBlt from device type %x", ts );
tqWarning( "bitBlt: Cannot bitBlt from device type %x", ts );
#endif
return;
}
@ -917,7 +917,7 @@ void bitBlt( QPaintDevice *dst, int dx, int dy,
break;
default:
#if defined(QT_CHECK_RANGE)
qWarning( "bitBlt: Cannot bitBlt to device type %x", td );
tqWarning( "bitBlt: Cannot bitBlt to device type %x", td );
#endif
return;
}
@ -930,14 +930,14 @@ void bitBlt( QPaintDevice *dst, int dx, int dy,
};
if ( rop > Qt::LastROP ) {
#if defined(QT_CHECK_RANGE)
qWarning( "bitBlt: Invalid ROP code" );
tqWarning( "bitBlt: Invalid ROP code" );
#endif
return;
}
if ( dst->handle() == 0 ) {
#if defined(QT_CHECK_NULL)
qWarning( "bitBlt: Cannot bitBlt to device" );
tqWarning( "bitBlt: Cannot bitBlt to device" );
#endif
return;
}
@ -975,7 +975,7 @@ void bitBlt( QPaintDevice *dst, int dx, int dy,
if ( mono_dst && !mono_src ) { // dest is 1-bit pixmap, source is not
#if defined(QT_CHECK_RANGE)
qWarning( "bitBlt: Incompatible destination pixmap" );
tqWarning( "bitBlt: Incompatible destination pixmap" );
#endif
return;
}

@ -601,7 +601,7 @@ bool QPainter::begin( const QPaintDevice *pd, const QWidget *copyAttributes, boo
{
if ( copyAttributes == 0 ) {
#if defined(QT_CHECK_NULL)
qWarning( "QPainter::begin: The widget to copy attributes from cannot "
tqWarning( "QPainter::begin: The widget to copy attributes from cannot "
"be null" );
#endif
return FALSE;
@ -684,7 +684,7 @@ void QPainter::killPStack()
{
#if defined(QT_CHECK_STATE)
if ( ps_stack && !((QPStateStack *)ps_stack)->isEmpty() )
qWarning( "QPainter::killPStack: non-empty save/restore stack when "
tqWarning( "QPainter::killPStack: non-empty save/restore stack when "
"end() was called" );
#endif
delete (QPStateStack *)ps_stack;
@ -763,7 +763,7 @@ void QPainter::restore()
QPStateStack *pss = (QPStateStack *)ps_stack;
if ( pss == 0 || pss->isEmpty() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPainter::restore: Empty stack error" );
tqWarning( "QPainter::restore: Empty stack error" );
#endif
return;
}
@ -842,7 +842,7 @@ void QPainter::redirect( QPaintDevice *pdev, QPaintDevice *replacement )
}
#if defined(QT_CHECK_NULL)
if ( pdev == 0 )
qWarning( "QPainter::redirect: The pdev argument cannot be 0" );
tqWarning( "QPainter::redirect: The pdev argument cannot be 0" );
#endif
if ( replacement ) {
pdev_dict->insert( pdev, replacement );
@ -920,7 +920,7 @@ void QPainter::setPen( const QPen &pen )
{
#if defined(QT_CHECK_STATE)
if ( !isActive() )
qWarning( "QPainter::setPen: Will be reset by begin()" );
tqWarning( "QPainter::setPen: Will be reset by begin()" );
#endif
if ( cpen == pen )
return;
@ -941,7 +941,7 @@ void QPainter::setPen( PenStyle style )
{
#if defined(QT_CHECK_STATE)
if ( !isActive() )
qWarning( "QPainter::setPen: Will be reset by begin()" );
tqWarning( "QPainter::setPen: Will be reset by begin()" );
#endif
QPen::QPenData *d = cpen.data; // low level access
if ( d->style == style && d->linest == style && !d->width && d->color == Qt::black )
@ -970,7 +970,7 @@ void QPainter::setPen( const QColor &color )
{
#if defined(QT_CHECK_STATE)
if ( !isActive() )
qWarning( "QPainter::setPen: Will be reset by begin()" );
tqWarning( "QPainter::setPen: Will be reset by begin()" );
#endif
QPen::QPenData *d = cpen.data; // low level access
if ( d->color == color && !d->width && d->style == SolidLine && d->linest == SolidLine )
@ -1008,7 +1008,7 @@ void QPainter::setBrush( const QBrush &brush )
{
#if defined(QT_CHECK_STATE)
if ( !isActive() )
qWarning( "QPainter::setBrush: Will be reset by begin()" );
tqWarning( "QPainter::setBrush: Will be reset by begin()" );
#endif
if ( cbrush == brush )
return;
@ -1027,7 +1027,7 @@ void QPainter::setBrush( BrushStyle style )
{
#if defined(QT_CHECK_STATE)
if ( !isActive() )
qWarning( "QPainter::setBrush: Will be reset by begin()" );
tqWarning( "QPainter::setBrush: Will be reset by begin()" );
#endif
QBrush::QBrushData *d = cbrush.data; // low level access
if ( d->style == style && d->color == Qt::black && !d->pixmap )
@ -1058,7 +1058,7 @@ void QPainter::setBrush( const QColor &color )
{
#if defined(QT_CHECK_STATE)
if ( !isActive() )
qWarning( "QPainter::setBrush: Will be reset by begin()" );
tqWarning( "QPainter::setBrush: Will be reset by begin()" );
#endif
QBrush::QBrushData *d = cbrush.data; // low level access
if ( d->color == color && d->style == SolidPattern && !d->pixmap )
@ -1136,7 +1136,7 @@ void QPainter::setTabStops( int ts )
{
#if defined(QT_CHECK_STATE)
if ( !isActive() )
qWarning( "QPainter::setTabStops: Will be reset by begin()" );
tqWarning( "QPainter::setTabStops: Will be reset by begin()" );
#endif
tabstops = ts;
if ( isActive() && testf(ExtDev) ) { // tell extended device
@ -1167,7 +1167,7 @@ void QPainter::setTabArray( int *ta )
{
#if defined(QT_CHECK_STATE)
if ( !isActive() )
qWarning( "QPainter::setTabArray: Will be reset by begin()" );
tqWarning( "QPainter::setTabArray: Will be reset by begin()" );
#endif
if ( ta != tabarray ) {
tabarraylen = 0;
@ -1218,7 +1218,7 @@ void QPainter::setViewXForm( bool enable )
{
#if defined(QT_CHECK_STATE)
if ( !isActive() )
qWarning( "QPainter::setViewXForm: Will be reset by begin()" );
tqWarning( "QPainter::setViewXForm: Will be reset by begin()" );
#endif
if ( !isActive() || enable == testf(VxF) )
return;
@ -1272,7 +1272,7 @@ void QPainter::setWindow( int x, int y, int w, int h )
{
#if defined(QT_CHECK_STATE)
if ( !isActive() )
qWarning( "QPainter::setWindow: Will be reset by begin()" );
tqWarning( "QPainter::setWindow: Will be reset by begin()" );
#endif
wx = x;
wy = y;
@ -1322,7 +1322,7 @@ void QPainter::setViewport( int x, int y, int w, int h )
{
#if defined(QT_CHECK_STATE)
if ( !isActive() )
qWarning( "QPainter::setViewport: Will be reset by begin()" );
tqWarning( "QPainter::setViewport: Will be reset by begin()" );
#endif
vx = x;
vy = y;
@ -1354,7 +1354,7 @@ void QPainter::setWorldXForm( bool enable )
{
#if defined(QT_CHECK_STATE)
if ( !isActive() )
qWarning( "QPainter::setWorldXForm: Will be reset by begin()" );
tqWarning( "QPainter::setWorldXForm: Will be reset by begin()" );
#endif
if ( !isActive() || enable == testf(WxF) )
return;
@ -1440,7 +1440,7 @@ void QPainter::setWorldMatrix( const QWMatrix &m, bool combine )
{
if ( !isActive() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPainter::setWorldMatrix: Will be reset by begin()" );
tqWarning( "QPainter::setWorldMatrix: Will be reset by begin()" );
#endif
return;
}
@ -1493,7 +1493,7 @@ void QPainter::restoreWorldMatrix()
QWMatrixStack *stack = (QWMatrixStack *)wm_stack;
if ( stack == 0 || stack->isEmpty() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPainter::restoreWorldMatrix: Empty stack error" );
tqWarning( "QPainter::restoreWorldMatrix: Empty stack error" );
#endif
return;
}
@ -1774,7 +1774,7 @@ void QPainter::map( int x, int y, int w, int h,
} break;
default:
#if defined(QT_CHECK_STATE)
qWarning( "QPainter::map: Internal error" );
tqWarning( "QPainter::map: Internal error" );
#endif
break;
}
@ -1797,7 +1797,7 @@ void QPainter::map( int x, int y, int w, int h,
break;
default:
#if defined(QT_CHECK_STATE)
qWarning( "QPainter::map: Internal error" );
tqWarning( "QPainter::map: Internal error" );
#endif
break;
}
@ -1819,7 +1819,7 @@ void QPainter::mapInv( int x, int y, int *rx, int *ry ) const
#ifndef QT_NO_TRANSFORMATIONS
#if defined(QT_CHECK_STATE)
if ( !txinv )
qWarning( "QPainter::mapInv: Internal error" );
tqWarning( "QPainter::mapInv: Internal error" );
#endif
if ( qt_old_transformations ) {
double tx = im11()*x + im21()*y+idx();
@ -1848,7 +1848,7 @@ void QPainter::mapInv( int x, int y, int w, int h,
#ifndef QT_NO_TRANSFORMATIONS
#if defined(QT_CHECK_STATE)
if ( !txinv || txop == TxRotShear )
qWarning( "QPainter::mapInv: Internal error" );
tqWarning( "QPainter::mapInv: Internal error" );
#endif
if ( qt_old_transformations ) {
double tx = im11()*x + idx();
@ -2939,20 +2939,20 @@ void qt_format_text( const QFont& font, const QRect &_r,
int desc = fm.descent();
height = -leading;
//qDebug("\n\nbeginLayout: lw = %d, rectwidth=%d", lineWidth , r.width());
//tqDebug("\n\nbeginLayout: lw = %d, rectwidth=%d", lineWidth , r.width());
while ( !textLayout.atEnd() ) {
height += leading;
textLayout.beginLine( lineWidth == INT_MAX ? lineWidth : lineWidth );
//qDebug("-----beginLine( %d )-----", lineWidth );
//tqDebug("-----beginLine( %d )-----", lineWidth );
bool linesep = FALSE;
while ( 1 ) {
QTextItem ti = textLayout.currentItem();
//qDebug("item: from=%d, ch=%x", ti.from(), text.unicode()[ti.from()].unicode() );
//tqDebug("item: from=%d, ch=%x", ti.from(), text.unicode()[ti.from()].unicode() );
if ( expandtabs && ti.isTab() ) {
int tw = 0;
int x = textLayout.widthUsed();
if ( tabarraylen ) {
// qDebug("tabarraylen=%d", tabarraylen );
// tqDebug("tabarraylen=%d", tabarraylen );
int tab = 0;
while ( tab < tabarraylen ) {
if ( tabarray[tab] > x ) {
@ -2964,7 +2964,7 @@ void qt_format_text( const QFont& font, const QRect &_r,
} else {
tw = tabstops - (x % tabstops);
}
//qDebug("tw = %d", tw );
//tqDebug("tw = %d", tw );
if ( tw )
ti.setWidth( tw );
}
@ -2979,7 +2979,7 @@ void qt_format_text( const QFont& font, const QRect &_r,
textLayout.setLineWidth( r.width()-rb-lb );
textLayout.endLine( 0, height, tf, &ascent, &descent,
&lineLeft, &lineRight );
//qDebug("finalizing line: lw=%d ascent = %d, descent=%d lineleft=%d lineright=%d", lineWidth, ascent, descent,lineLeft, lineRight );
//tqDebug("finalizing line: lw=%d ascent = %d, descent=%d lineleft=%d lineright=%d", lineWidth, ascent, descent,lineLeft, lineRight );
left = QMIN( left, lineLeft );
right = QMAX( right, lineRight );
height += ascent + descent + 1;
@ -2996,7 +2996,7 @@ void qt_format_text( const QFont& font, const QRect &_r,
if ( brect ) {
*brect = QRect( r.x() + left, r.y() + yoff, right-left + lb+rb, height );
//qDebug("br = %d %d %d/%d, left=%d, right=%d", brect->x(), brect->y(), brect->width(), brect->height(), left, right);
//tqDebug("br = %d %d %d/%d, left=%d, right=%d", brect->x(), brect->y(), brect->width(), brect->height(), left, right);
}
if (!(tf & QPainter::DontPrint)) {
@ -3032,10 +3032,10 @@ void qt_format_text( const QFont& font, const QRect &_r,
if (fnt.overline()) _tf |= Qt::Overline;
if (fnt.strikeOut()) _tf |= Qt::StrikeOut;
//qDebug("have %d items",textLayout.numItems());
//tqDebug("have %d items",textLayout.numItems());
for ( int i = 0; i < textLayout.numItems(); i++ ) {
QTextItem ti = textLayout.itemAt( i );
//qDebug("Item %d: from=%d, length=%d, space=%d x=%d", i, ti.from(), ti.length(), ti.isSpace(), ti.x() );
//tqDebug("Item %d: from=%d, length=%d, space=%d x=%d", i, ti.from(), ti.length(), ti.isSpace(), ti.x() );
if ( ti.isTab() || ti.isObject() )
continue;
int textFlags = _tf;
@ -3803,7 +3803,7 @@ void QBrush::setStyle( BrushStyle s ) // set brush style
return;
#if defined(QT_CHECK_RANGE)
if ( s == CustomPattern )
qWarning( "QBrush::setStyle: CustomPattern is for internal use" );
tqWarning( "QBrush::setStyle: CustomPattern is for internal use" );
#endif
detach();
data->style = s;
@ -3930,7 +3930,7 @@ QDataStream &operator<<( QDataStream &s, const QBrush &b )
#ifndef QT_NO_IMAGEIO
s << *b.pixmap();
#else
qWarning("No Image Brush I/O");
tqWarning("No Image Brush I/O");
#endif
return s;
}
@ -3956,7 +3956,7 @@ QDataStream &operator>>( QDataStream &s, QBrush &b )
s >> pm;
b = QBrush( color, pm );
#else
qWarning("No Image Brush I/O");
tqWarning("No Image Brush I/O");
#endif
}
else

@ -347,7 +347,7 @@ static GC alloc_gc( Display *dpy, int scrn, Drawable hd, bool monochrome=FALSE,
p++;
}
#if defined(QT_CHECK_NULL)
qWarning( "QPainter: Internal error; no available GC" );
tqWarning( "QPainter: Internal error; no available GC" );
#endif
GC gc = XCreateGC( dpy, hd, 0, 0 );
XSetGraphicsExposures( dpy, gc, False );
@ -449,9 +449,9 @@ static void cleanup_gc_cache()
if ( !gc_cache_init )
return;
#if defined(GC_CACHE_STAT)
qDebug( "Number of cache hits = %d", g_numhits );
qDebug( "Number of cache creates = %d", g_numcreates );
qDebug( "Number of cache faults = %d", g_numfaults );
tqDebug( "Number of cache hits = %d", g_numhits );
tqDebug( "Number of cache creates = %d", g_numcreates );
tqDebug( "Number of cache faults = %d", g_numfaults );
for ( int i=0; i<gc_cache_size; i++ ) {
QCString str;
QBuffer buf( str );
@ -464,7 +464,7 @@ static void cleanup_gc_cache()
<< g->count << '\t';
}
s << '\0';
qDebug( str );
tqDebug( str );
buf.close();
}
#endif
@ -640,7 +640,7 @@ void QPainter::setFont( const QFont &font )
{
#if defined(QT_CHECK_STATE)
if ( !isActive() )
qWarning( "QPainter::setFont: Will be reset by begin()" );
tqWarning( "QPainter::setFont: Will be reset by begin()" );
#endif
if ( cfont.d != font.d ) {
cfont = font;
@ -1013,14 +1013,14 @@ bool QPainter::begin( const QPaintDevice *pd, bool unclipped )
{
if ( isActive() ) { // already active painting
#if defined(QT_CHECK_STATE)
qWarning( "QPainter::begin: Painter is already active."
tqWarning( "QPainter::begin: Painter is already active."
"\n\tYou must end() the painter before a second begin()" );
#endif
return FALSE;
}
if ( pd == 0 ) {
#if defined(QT_CHECK_NULL)
qWarning( "QPainter::begin: Paint device cannot be null" );
tqWarning( "QPainter::begin: Paint device cannot be null" );
#endif
return FALSE;
}
@ -1039,7 +1039,7 @@ bool QPainter::begin( const QPaintDevice *pd, bool unclipped )
if ( pdev->isExtDev() && pdev->paintingActive() ) {
// somebody else is already painting
#if defined(QT_CHECK_STATE)
qWarning( "QPainter::begin: Another QPainter is already painting "
tqWarning( "QPainter::begin: Another QPainter is already painting "
"this device;\n\tAn extended paint device can only be "
"painted by one QPainter at a time." );
#endif
@ -1129,7 +1129,7 @@ bool QPainter::begin( const QPaintDevice *pd, bool unclipped )
QPixmap *pm = (QPixmap*)pdev;
if ( pm->isNull() ) {
#if defined(QT_CHECK_NULL)
qWarning( "QPainter::begin: Cannot paint null pixmap" );
tqWarning( "QPainter::begin: Cannot paint null pixmap" );
#endif
end();
return FALSE;
@ -1189,7 +1189,7 @@ bool QPainter::end() // end painting
{
if ( !isActive() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPainter::end: Missing begin() or begin() failed" );
tqWarning( "QPainter::end: Missing begin() or begin() failed" );
#endif
return FALSE;
}
@ -1290,7 +1290,7 @@ void QPainter::setBackgroundColor( const QColor &c )
{
if ( !isActive() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPainter::setBackgroundColor: Call begin() first" );
tqWarning( "QPainter::setBackgroundColor: Call begin() first" );
#endif
return;
}
@ -1325,13 +1325,13 @@ void QPainter::setBackgroundMode( BGMode m )
{
if ( !isActive() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPainter::setBackgroundMode: Call begin() first" );
tqWarning( "QPainter::setBackgroundMode: Call begin() first" );
#endif
return;
}
if ( m != TransparentMode && m != OpaqueMode ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QPainter::setBackgroundMode: Invalid mode" );
tqWarning( "QPainter::setBackgroundMode: Invalid mode" );
#endif
return;
}
@ -1379,13 +1379,13 @@ void QPainter::setRasterOp( RasterOp r )
{
if ( !isActive() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPainter::setRasterOp: Call begin() first" );
tqWarning( "QPainter::setRasterOp: Call begin() first" );
#endif
return;
}
if ( (uint)r > LastROP ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QPainter::setRasterOp: Invalid ROP code" );
tqWarning( "QPainter::setRasterOp: Invalid ROP code" );
#endif
return;
}
@ -1420,7 +1420,7 @@ void QPainter::setBrushOrigin( int x, int y )
{
if ( !isActive() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPainter::setBrushOrigin: Call begin() first" );
tqWarning( "QPainter::setBrushOrigin: Call begin() first" );
#endif
return;
}
@ -1449,7 +1449,7 @@ void QPainter::setClipping( bool enable )
{
if ( !isActive() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPainter::setClipping: Will be reset by begin()" );
tqWarning( "QPainter::setClipping: Will be reset by begin()" );
#endif
return;
}
@ -1514,7 +1514,7 @@ void QPainter::setClipRegion( const QRegion &rgn, CoordinateMode m )
{
#if defined(QT_CHECK_STATE)
if ( !isActive() )
qWarning( "QPainter::setClipRegion: Will be reset by begin()" );
tqWarning( "QPainter::setClipRegion: Will be reset by begin()" );
#endif
if ( m == CoordDevice )
crgn = rgn;
@ -2501,7 +2501,7 @@ void QPainter::drawCubicBezier( const QPointArray &a, int index )
return;
if ( a.size() - index < 4 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QPainter::drawCubicBezier: Cubic Bezier needs 4 control "
tqWarning( "QPainter::drawCubicBezier: Cubic Bezier needs 4 control "
"points" );
#endif
return;

@ -1100,13 +1100,13 @@ const QBrush &QPalette::directBrush( ColorGroup gr, QColorGroup::ColorRole r ) c
{
if ( (uint)gr > (uint)QPalette::NColorGroups ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QPalette::directBrush: colorGroup(%i) out of range", gr );
tqWarning( "QPalette::directBrush: colorGroup(%i) out of range", gr );
#endif
return data->active.br[QColorGroup::Foreground];
}
if ( (uint)r >= (uint)QColorGroup::NColorRoles ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QPalette::directBrush: colorRole(%i) out of range", r );
tqWarning( "QPalette::directBrush: colorRole(%i) out of range", r );
#endif
return data->active.br[QColorGroup::Foreground];
}
@ -1124,7 +1124,7 @@ const QBrush &QPalette::directBrush( ColorGroup gr, QColorGroup::ColorRole r ) c
break;
}
#if defined(QT_CHECK_RANGE)
qWarning( "QPalette::directBrush: colorGroup(%i) internal error", gr );
tqWarning( "QPalette::directBrush: colorGroup(%i) internal error", gr );
#endif
return data->active.br[QColorGroup::Foreground]; // Satisfy compiler
}
@ -1133,13 +1133,13 @@ void QPalette::directSetBrush( ColorGroup gr, QColorGroup::ColorRole r, const QB
{
if ( (uint)gr > (uint)QPalette::NColorGroups ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QPalette::directBrush: colorGroup(%i) out of range", gr );
tqWarning( "QPalette::directBrush: colorGroup(%i) out of range", gr );
#endif
return;
}
if ( (uint)r >= (uint)QColorGroup::NColorRoles ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QPalette::directBrush: colorRole(%i) out of range", r );
tqWarning( "QPalette::directBrush: colorRole(%i) out of range", r );
#endif
return;
}
@ -1155,7 +1155,7 @@ void QPalette::directSetBrush( ColorGroup gr, QColorGroup::ColorRole r, const QB
break;
default:
#if defined(QT_CHECK_RANGE)
qWarning( "QPalette::directBrush: colorGroup(%i) internal error", gr );
tqWarning( "QPalette::directBrush: colorGroup(%i) internal error", gr );
#endif
break;
}

@ -138,7 +138,7 @@ QPicture::QPicture( int formatVersion )
#if defined(QT_CHECK_RANGE)
if ( formatVersion == 0 )
qWarning( "QPicture: invalid format version 0" );
tqWarning( "QPicture: invalid format version 0" );
#endif
// still accept the 0 default from before Qt 3.0.
@ -260,7 +260,7 @@ bool QPicture::load( QIODevice *dev, const char *format )
}
#endif
if ( format ) {
qWarning( "QPicture::load: No such picture format: %s", format );
tqWarning( "QPicture::load: No such picture format: %s", format );
return FALSE;
}
@ -291,7 +291,7 @@ bool QPicture::save( const QString &fileName, const char *format )
{
if ( paintingActive() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPicture::save: still being painted on. "
tqWarning( "QPicture::save: still being painted on. "
"Call QPainter::end() first" );
#endif
return FALSE;
@ -300,7 +300,7 @@ bool QPicture::save( const QString &fileName, const char *format )
#ifndef QT_NO_SVG
// identical to QIODevice* code below but the file name
// makes a difference when it comes to saving pixmaps
if ( qstricmp( format, "svg" ) == 0 ) {
if ( tqstricmp( format, "svg" ) == 0 ) {
QSvgDevice svg;
QPainter p( &svg );
if ( !play( &p ) )
@ -326,14 +326,14 @@ bool QPicture::save( QIODevice *dev, const char *format )
{
if ( paintingActive() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPicture::save: still being painted on. "
tqWarning( "QPicture::save: still being painted on. "
"Call QPainter::end() first" );
#endif
return FALSE;
}
#ifndef QT_NO_SVG
if ( qstricmp( format, "svg" ) == 0 ) {
if ( tqstricmp( format, "svg" ) == 0 ) {
QSvgDevice svg;
QPainter p( &svg );
if ( !play( &p ) )
@ -343,7 +343,7 @@ bool QPicture::save( QIODevice *dev, const char *format )
}
#endif
if ( format ) {
qWarning( "QPicture::save: No such picture format: %s", format );
tqWarning( "QPicture::save: No such picture format: %s", format );
return FALSE;
}
@ -409,7 +409,7 @@ bool QPicture::play( QPainter *painter )
s >> nrecords;
if ( !exec( painter, s, nrecords ) ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QPicture::play: Format error" );
tqWarning( "QPicture::play: Format error" );
#endif
d->pictb.close();
return FALSE;
@ -669,13 +669,13 @@ bool QPicture::exec( QPainter *painter, QDataStream &s, int nrecords )
break;
default:
#if defined(QT_CHECK_RANGE)
qWarning( "QPicture::play: Invalid command %d", c );
tqWarning( "QPicture::play: Invalid command %d", c );
#endif
if ( len ) // skip unknown command
s.device()->at( s.device()->at()+len );
}
#if defined(QT_DEBUG)
//qDebug( "device->at(): %i, strm_pos: %i len: %i", s.device()->at(), strm_pos, len );
//tqDebug( "device->at(): %i, strm_pos: %i len: %i", s.device()->at(), strm_pos, len );
Q_ASSERT( Q_INT32(s.device()->at() - strm_pos) == len );
#endif
}
@ -736,7 +736,7 @@ bool QPicture::QPicturePrivate::cmd( int c, QPainter *pt, QPDevCmdParam *p )
}
s << (Q_UINT32)trecs; // write number of records
pictb.at( cs_start );
Q_UINT16 cs = (Q_UINT16)qChecksum( buf.data()+data_start, pos-data_start );
Q_UINT16 cs = (Q_UINT16)tqChecksum( buf.data()+data_start, pos-data_start );
s << cs; // write checksum
pictb.close();
return TRUE;
@ -899,7 +899,7 @@ bool QPicture::QPicturePrivate::cmd( int c, QPainter *pt, QPDevCmdParam *p )
break;
#if defined(QT_CHECK_RANGE)
default:
qWarning( "QPicture::cmd: Command %d not recognized", c );
tqWarning( "QPicture::cmd: Command %d not recognized", c );
#endif
}
int newpos = (int)pictb.at(); // new position
@ -985,7 +985,7 @@ int QPicture::metric( int m ) const
default:
val = 0;
#if defined(QT_CHECK_RANGE)
qWarning( "QPicture::metric: Invalid metric command" );
tqWarning( "QPicture::metric: Invalid metric command" );
#endif
}
return val;
@ -1120,7 +1120,7 @@ bool QPicture::QPicturePrivate::checkFormat()
s.readRawBytes( mf_id, 4 ); // read actual tag
if ( memcmp(mf_id, mfhdr_tag, 4) != 0 ) { // wrong header id
#if defined(QT_CHECK_RANGE)
qWarning( "QPicture::checkFormat: Incorrect header" );
tqWarning( "QPicture::checkFormat: Incorrect header" );
#endif
pictb.close();
return FALSE;
@ -1131,10 +1131,10 @@ bool QPicture::QPicturePrivate::checkFormat()
Q_UINT16 cs,ccs;
QByteArray buf = pictb.buffer(); // pointer to data
s >> cs; // read checksum
ccs = qChecksum( buf.data() + data_start, buf.size() - data_start );
ccs = tqChecksum( buf.data() + data_start, buf.size() - data_start );
if ( ccs != cs ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPicture::checkFormat: Invalid checksum %x, %x expected",
tqWarning( "QPicture::checkFormat: Invalid checksum %x, %x expected",
ccs, cs );
#endif
pictb.close();
@ -1145,7 +1145,7 @@ bool QPicture::QPicturePrivate::checkFormat()
s >> major >> minor; // read version number
if ( major > mfhdr_maj ) { // new, incompatible version
#if defined(QT_CHECK_RANGE)
qWarning( "QPicture::checkFormat: Incompatible version %d.%d",
tqWarning( "QPicture::checkFormat: Incompatible version %d.%d",
major, minor);
#endif
pictb.close();
@ -1163,7 +1163,7 @@ bool QPicture::QPicturePrivate::checkFormat()
}
} else {
#if defined(QT_CHECK_RANGE)
qWarning( "QPicture::checkFormat: Format error" );
tqWarning( "QPicture::checkFormat: Format error" );
#endif
pictb.close();
return FALSE;

@ -405,7 +405,7 @@ QPixmap QPixmap::fromMimeSource( const QString &abs_name )
return QPixmap( abs_name );
#if defined(QT_CHECK_STATE)
if ( !abs_name.isEmpty() )
qWarning( "QPixmap::fromMimeSource: Cannot find pixmap \"%s\" in the mime source factory",
tqWarning( "QPixmap::fromMimeSource: Cannot find pixmap \"%s\" in the mime source factory",
abs_name.latin1() );
#endif
return QPixmap();
@ -459,7 +459,7 @@ QPixmap &QPixmap::operator=( const QPixmap &pixmap )
{
if ( paintingActive() ) {
#if defined(QT_CHECK_STATE)
qWarning("QPixmap::operator=: Cannot assign to pixmap during painting");
tqWarning("QPixmap::operator=: Cannot assign to pixmap during painting");
#endif
return *this;
}
@ -673,7 +673,7 @@ void QPixmap::resize( int w, int h )
} else
#elif defined(Q_WS_X11) && !defined(QT_NO_XFTFREETYPE)
if (data->alphapm)
qWarning("QPixmap::resize: TODO: resize alpha data");
tqWarning("QPixmap::resize: TODO: resize alpha data");
else
#endif // Q_WS_X11
if ( data->mask ) { // resize mask as well
@ -746,7 +746,7 @@ void QPixmap::setMask( const QBitmap &newmask )
if ( newmask.width() != width() || newmask.height() != height() ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QPixmap::setMask: The pixmap and the mask must have "
tqWarning( "QPixmap::setMask: The pixmap and the mask must have "
"the same size" );
#endif
return;
@ -1054,7 +1054,7 @@ bool QPixmap::doImageIO( QImageIO* io, int quality ) const
io->setImage( convertToImage() );
#if defined(QT_CHECK_RANGE)
if ( quality > 100 || quality < -1 )
qWarning( "QPixmap::save: quality out of range [-1,100]" );
tqWarning( "QPixmap::save: quality out of range [-1,100]" );
#endif
if ( quality >= 0 )
io->setQuality( QMIN(quality,100) );

@ -141,7 +141,7 @@ static bool qt_create_mitshm_buffer( const QPaintDevice* dev, int w, int h )
} else {
if ( !XShmQueryVersion(dpy, &major, &minor, &pixmaps_ok) )
return FALSE; // MIT Shm not supported
qAddPostRoutine( qt_cleanup_mitshm );
tqAddPostRoutine( qt_cleanup_mitshm );
xshminit = TRUE;
}
@ -350,14 +350,14 @@ static void build_scale_table( uint **table, uint nBits )
{
if ( nBits > 7 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "build_scale_table: internal error, nBits = %i", nBits );
tqWarning( "build_scale_table: internal error, nBits = %i", nBits );
#endif
return;
}
if (!*table) {
static bool firstTable = TRUE;
if ( firstTable ) {
qAddPostRoutine( cleanup_scale_tables );
tqAddPostRoutine( cleanup_scale_tables );
firstTable = FALSE;
}
*table = new uint[256];
@ -394,7 +394,7 @@ void QPixmap::init( int w, int h, int d, bool bitmap, Optimization optim )
{
#if defined(QT_CHECK_STATE)
if ( qApp->type() == QApplication::Tty ) {
qWarning( "QPixmap: Cannot create a QPixmap when no GUI "
tqWarning( "QPixmap: Cannot create a QPixmap when no GUI "
"is being used" );
}
#endif
@ -441,7 +441,7 @@ void QPixmap::init( int w, int h, int d, bool bitmap, Optimization optim )
rendhd = 0;
#if defined(QT_CHECK_RANGE)
if ( !make_null )
qWarning( "QPixmap: Invalid pixmap parameters" );
tqWarning( "QPixmap: Invalid pixmap parameters" );
#endif
return;
}
@ -690,7 +690,7 @@ int QPixmap::metric( int m ) const
default:
val = 0;
#if defined(QT_CHECK_RANGE)
qWarning( "QPixmap::metric: Invalid metric command" );
tqWarning( "QPixmap::metric: Invalid metric command" );
#endif
}
}
@ -889,7 +889,7 @@ QImage QPixmap::convertToImage() const
y = h;
pixel = 0; // eliminate compiler warning
#if defined(QT_CHECK_RANGE)
qWarning( "QPixmap::convertToImage: Invalid depth %d",
tqWarning( "QPixmap::convertToImage: Invalid depth %d",
bppc );
#endif
}
@ -938,7 +938,7 @@ QImage QPixmap::convertToImage() const
} else {
/* Typically 2 or 4 bits display depth */
#if defined(QT_CHECK_RANGE)
qWarning( "QPixmap::convertToImage: Display not supported (bpp=%d)",
tqWarning( "QPixmap::convertToImage: Display not supported (bpp=%d)",
xi->bits_per_pixel );
#endif
image.reset();
@ -1098,7 +1098,7 @@ bool QPixmap::convertFromImage( const QImage &img, int conversion_flags )
{
if ( img.isNull() ) {
#if defined(QT_CHECK_NULL)
qWarning( "QPixmap::convertFromImage: Cannot convert a null image" );
tqWarning( "QPixmap::convertFromImage: Cannot convert a null image" );
#endif
return FALSE;
}
@ -1352,7 +1352,7 @@ bool QPixmap::convertFromImage( const QImage &img, int conversion_flags )
int wordsize;
bool bigendian;
qSysInfo( &wordsize, &bigendian );
tqSysInfo( &wordsize, &bigendian );
bool same_msb_lsb = ( xi->byte_order == MSBFirst ) == ( bigendian );
if( bppc == 8 ) // 8 bit
@ -1375,7 +1375,7 @@ bool QPixmap::convertFromImage( const QImage &img, int conversion_flags )
else
mode = bppc == 33 ? BPP32_LSB : BPP32_MSB;
} else
qFatal("Logic error 3");
tqFatal("Logic error 3");
#define GET_PIXEL \
int pixel; \
@ -1494,7 +1494,7 @@ bool QPixmap::convertFromImage( const QImage &img, int conversion_flags )
)
break;
default:
qFatal("Logic error");
tqFatal("Logic error");
}
} else {
switch ( mode ) {
@ -1591,7 +1591,7 @@ bool QPixmap::convertFromImage( const QImage &img, int conversion_flags )
)
break;
default:
qFatal("Logic error 2");
tqFatal("Logic error 2");
}
}
xi->data = (char *)newbits;
@ -1756,7 +1756,7 @@ bool QPixmap::convertFromImage( const QImage &img, int conversion_flags )
newbits = (uchar *)newerbits;
} else if ( xi->bits_per_pixel != 8 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QPixmap::convertFromImage: Display not supported "
tqWarning( "QPixmap::convertFromImage: Display not supported "
"(bpp=%d)", xi->bits_per_pixel );
#endif
}
@ -2155,17 +2155,17 @@ QPixmap QPixmap::xForm( const QWMatrix &matrix ) const
// #define QT_DEBUG_XIMAGE
#if defined(QT_DEBUG_XIMAGE)
qDebug( "----IMAGE--INFO--------------" );
qDebug( "width............. %d", xi->width );
qDebug( "height............ %d", xi->height );
qDebug( "xoffset........... %d", xi->xoffset );
qDebug( "format............ %d", xi->format );
qDebug( "byte order........ %d", xi->byte_order );
qDebug( "bitmap unit....... %d", xi->bitmap_unit );
qDebug( "bitmap bit order.. %d", xi->bitmap_bit_order );
qDebug( "depth............. %d", xi->depth );
qDebug( "bytes per line.... %d", xi->bytes_per_line );
qDebug( "bits per pixel.... %d", xi->bits_per_pixel );
tqDebug( "----IMAGE--INFO--------------" );
tqDebug( "width............. %d", xi->width );
tqDebug( "height............ %d", xi->height );
tqDebug( "xoffset........... %d", xi->xoffset );
tqDebug( "format............ %d", xi->format );
tqDebug( "byte order........ %d", xi->byte_order );
tqDebug( "bitmap unit....... %d", xi->bitmap_unit );
tqDebug( "bitmap bit order.. %d", xi->bitmap_bit_order );
tqDebug( "depth............. %d", xi->depth );
tqDebug( "bytes per line.... %d", xi->bytes_per_line );
tqDebug( "bits per pixel.... %d", xi->bits_per_pixel );
#endif
int type;
@ -2188,7 +2188,7 @@ QPixmap QPixmap::xForm( const QWMatrix &matrix ) const
if ( !qt_xForm_helper( mat, xi->xoffset, type, bpp, dptr, xbpl, p_inc, h, sptr, sbpl, ws, hs ) ){
#if defined(QT_CHECK_RANGE)
qWarning( "QPixmap::xForm: display not supported (bpp=%d)",bpp);
tqWarning( "QPixmap::xForm: display not supported (bpp=%d)",bpp);
#endif
QPixmap pm;
return pm;
@ -2325,7 +2325,7 @@ void QPixmap::x11SetScreen( int screen )
return;
}
#if 0
qDebug("QPixmap::x11SetScreen for %p from %d to %d. Size is %d/%d", data, x11Screen(), screen, width(), height() );
tqDebug("QPixmap::x11SetScreen for %p from %d to %d. Size is %d/%d", data, x11Screen(), screen, width(), height() );
#endif
QImage img = convertToImage();

@ -307,7 +307,7 @@ void QPixmapCache::setCacheLimit( int n )
{
#ifdef Q_WS_MAC9
if(n > 256)
qWarning("QPixmapCache::setCacheLimit: Setting cache limits high is harmfull to mac9's health");
tqWarning("QPixmapCache::setCacheLimit: Setting cache limits high is harmfull to mac9's health");
#endif
cache_limit = n;
if ( pm_cache )

@ -309,7 +309,7 @@ extern "C" {
#endif
static void CALLBACK_CALL_TYPE qt_png_warning(png_structp /*png_ptr*/, png_const_charp message)
{
qWarning("libpng warning: %s", message);
tqWarning("libpng warning: %s", message);
}
#if defined(Q_C_CALLBACKS)
@ -502,7 +502,7 @@ static void set_text(const QImage& image, png_structp png_ptr, png_infop info_pt
text_ptr[i].compression = PNG_TEXT_COMPRESSION_zTXt;
text_ptr[i].key = (png_charp)(*it).key.data();
text_ptr[i].text = (png_charp)t.latin1();
//text_ptr[i].text = qstrdup(t.latin1());
//text_ptr[i].text = tqstrdup(t.latin1());
i++;
}
}
@ -555,7 +555,7 @@ bool QPNGImageWriter::writeImage(const QImage& image, int quality_in, int off_x_
if (quality >= 0) {
if (quality > 9) {
#if defined(QT_CHECK_RANGE)
qWarning( "PNG: Quality %d out of range", quality );
tqWarning( "PNG: Quality %d out of range", quality );
#endif
quality = 9;
}
@ -1268,7 +1268,7 @@ int QPNGFormat::user_chunk(png_structp png,
png_bytep data, png_uint_32 length)
{
#if 0 // NOT SUPPORTED: experimental PNG animation.
// qDebug("Got %ld-byte %s chunk", length, png->chunk_name);
// tqDebug("Got %ld-byte %s chunk", length, png->chunk_name);
if ( 0==qstrcmp((char*)png->chunk_name, "gIFg")
&& length == 4 ) {
@ -1351,7 +1351,7 @@ void qInitPngIO()
#ifndef QT_NO_ASYNC_IMAGE_IO
globalPngFormatTypeObject = new QPNGFormatType;
#endif
qAddPostRoutine( qCleanupPngIO );
tqAddPostRoutine( qCleanupPngIO );
}
}

@ -376,7 +376,7 @@
void QPoint::warningDivByZero()
{
#if defined(QT_CHECK_MATH)
qWarning( "QPoint: Division by zero error" );
tqWarning( "QPoint: Division by zero error" );
#endif
}

@ -915,7 +915,7 @@ QPointArray QPointArray::cubicBezier() const
#ifdef USE_SIMPLE_QBEZIER_CODE
if ( size() != 4 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QPointArray::bezier: The array must have 4 control points" );
tqWarning( "QPointArray::bezier: The array must have 4 control points" );
#endif
QPointArray p;
return p;
@ -969,7 +969,7 @@ QPointArray QPointArray::cubicBezier() const
if ( size() != 4 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QPointArray::bezier: The array must have 4 control points" );
tqWarning( "QPointArray::bezier: The array must have 4 control points" );
#endif
QPointArray pa;
return pa;

@ -367,7 +367,7 @@ void QPrinter::setOutputToFile( bool enable )
{
if ( state != 0 ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPrinter::setOutputToFile: Cannot do this during printing" );
tqWarning( "QPrinter::setOutputToFile: Cannot do this during printing" );
#endif
return;
}
@ -400,7 +400,7 @@ void QPrinter::setOutputFileName( const QString &fileName )
{
if ( state != 0 ) {
#if defined(QT_CHECK_STATE)
qWarning("QPrinter::setOutputFileName: Cannot do this during printing");
tqWarning("QPrinter::setOutputFileName: Cannot do this during printing");
#endif
return;
}
@ -457,7 +457,7 @@ void QPrinter::setDocName( const QString &name )
{
if ( state != 0 ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPrinter::setDocName: Cannot do this during printing" );
tqWarning( "QPrinter::setDocName: Cannot do this during printing" );
#endif
return;
}
@ -550,7 +550,7 @@ void QPrinter::setPageSize( PageSize newPageSize )
{
if ( newPageSize > NPageSize ) {
#if defined(QT_CHECK_STATE)
qWarning("QPrinter::SetPageSize: illegal page size %d", newPageSize );
tqWarning("QPrinter::SetPageSize: illegal page size %d", newPageSize );
#endif
return;
}
@ -674,7 +674,7 @@ void QPrinter::setFromTo( int fromPage, int toPage )
{
if ( state != 0 ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPrinter::setFromTo: Cannot do this during printing" );
tqWarning( "QPrinter::setFromTo: Cannot do this during printing" );
#endif
return;
}

@ -226,7 +226,7 @@ void QPrinter::setPrinterName( const QString &name )
{
if ( state != 0 ) {
#if defined(QT_CHECK_STATE)
qWarning( "QPrinter::setPrinterName: Cannot do this during printing" );
tqWarning( "QPrinter::setPrinterName: Cannot do this during printing" );
#endif
return;
}
@ -258,7 +258,7 @@ bool QPrinter::setup( QWidget * parent )
if ( result ) {
if ( !globalPrinterDefaults ) {
globalPrinterDefaults = new PrinterDefaults;
qAddPostRoutine( deleteGlobalPrinterDefaults );
tqAddPostRoutine( deleteGlobalPrinterDefaults );
}
globalPrinterDefaults->printerName = printerName();
globalPrinterDefaults->outputToFile = outputToFile();
@ -331,7 +331,7 @@ bool QPrinter::cmd( int c, QPainter *paint, QPDevCmdParam *p )
QApplication::flushX();
int fds[2];
if ( pipe( fds ) != 0 ) {
qWarning( "QPSPrinter: could not open pipe to print" );
tqWarning( "QPSPrinter: could not open pipe to print" );
state = PST_ERROR;
return FALSE;
}
@ -587,7 +587,7 @@ int QPrinter::metric( int m ) const
default:
val = 0;
#if defined(QT_CHECK_RANGE)
qWarning( "QPixmap::metric: Invalid metric command" );
tqWarning( "QPixmap::metric: Invalid metric command" );
#endif
}
return val;

@ -748,28 +748,28 @@ void QProcess::writeToStdin( const QString& buf )
void QProcess::connectNotify( const char * signal )
{
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::connectNotify(): signal %s has been connected", signal );
tqDebug( "QProcess::connectNotify(): signal %s has been connected", signal );
#endif
if ( !ioRedirection )
if ( qstrcmp( signal, SIGNAL(readyReadStdout()) )==0 ||
qstrcmp( signal, SIGNAL(readyReadStderr()) )==0
) {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::connectNotify(): set ioRedirection to TRUE" );
tqDebug( "QProcess::connectNotify(): set ioRedirection to TRUE" );
#endif
setIoRedirection( TRUE );
return;
}
if ( !notifyOnExit && qstrcmp( signal, SIGNAL(processExited()) )==0 ) {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::connectNotify(): set notifyOnExit to TRUE" );
tqDebug( "QProcess::connectNotify(): set notifyOnExit to TRUE" );
#endif
setNotifyOnExit( TRUE );
return;
}
if ( !wroteToStdinConnected && qstrcmp( signal, SIGNAL(wroteToStdin()) )==0 ) {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::connectNotify(): set wroteToStdinConnected to TRUE" );
tqDebug( "QProcess::connectNotify(): set wroteToStdinConnected to TRUE" );
#endif
setWroteStdinConnected( TRUE );
return;
@ -785,19 +785,19 @@ void QProcess::disconnectNotify( const char * )
receivers( SIGNAL(readyReadStderr()) ) ==0
) {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::disconnectNotify(): set ioRedirection to FALSE" );
tqDebug( "QProcess::disconnectNotify(): set ioRedirection to FALSE" );
#endif
setIoRedirection( FALSE );
}
if ( notifyOnExit && receivers( SIGNAL(processExited()) ) == 0 ) {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::disconnectNotify(): set notifyOnExit to FALSE" );
tqDebug( "QProcess::disconnectNotify(): set notifyOnExit to FALSE" );
#endif
setNotifyOnExit( FALSE );
}
if ( wroteToStdinConnected && receivers( SIGNAL(wroteToStdin()) ) == 0 ) {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::disconnectNotify(): set wroteToStdinConnected to FALSE" );
tqDebug( "QProcess::disconnectNotify(): set wroteToStdinConnected to FALSE" );
#endif
setWroteStdinConnected( FALSE );
}

@ -134,7 +134,7 @@ public:
QProc( pid_t p, QProcess *proc=0 ) : pid(p), process(proc)
{
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProc: Constructor for pid %d and QProcess %p", pid, process );
tqDebug( "QProc: Constructor for pid %d and QProcess %p", pid, process );
#endif
socketStdin = 0;
socketStdout = 0;
@ -143,7 +143,7 @@ public:
~QProc()
{
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProc: Destructor for pid %d and QProcess %p", pid, process );
tqDebug( "QProc: Destructor for pid %d and QProcess %p", pid, process );
#endif
if ( process ) {
if ( process->d->notifierStdin )
@ -273,7 +273,7 @@ QProcessManager::QProcessManager() : sn(0)
sigchldFd[1] = 0;
} else {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcessManager: install socket notifier (%d)", sigchldFd[1] );
tqDebug( "QProcessManager: install socket notifier (%d)", sigchldFd[1] );
#endif
sn = new QSocketNotifier( sigchldFd[1],
QSocketNotifier::Read, this );
@ -286,7 +286,7 @@ QProcessManager::QProcessManager() : sn(0)
struct sigaction act;
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcessManager: install a SIGCHLD handler" );
tqDebug( "QProcessManager: install a SIGCHLD handler" );
#endif
act.sa_handler = qt_C_sigchldHnd;
sigemptyset( &(act.sa_mask) );
@ -296,17 +296,17 @@ QProcessManager::QProcessManager() : sn(0)
act.sa_flags |= SA_RESTART;
#endif
if ( sigaction( SIGCHLD, &act, &oldactChld ) != 0 )
qWarning( "Error installing SIGCHLD handler" );
tqWarning( "Error installing SIGCHLD handler" );
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcessManager: install a SIGPIPE handler (SIG_IGN)" );
tqDebug( "QProcessManager: install a SIGPIPE handler (SIG_IGN)" );
#endif
act.sa_handler = QT_SIGNAL_IGNORE;
sigemptyset( &(act.sa_mask) );
sigaddset( &(act.sa_mask), SIGPIPE );
act.sa_flags = 0;
if ( sigaction( SIGPIPE, &act, &oldactPipe ) != 0 )
qWarning( "Error installing SIGPIPE handler" );
tqWarning( "Error installing SIGPIPE handler" );
}
QProcessManager::~QProcessManager()
@ -320,23 +320,23 @@ QProcessManager::~QProcessManager()
// restore SIGCHLD handler
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcessManager: restore old sigchild handler" );
tqDebug( "QProcessManager: restore old sigchild handler" );
#endif
if ( sigaction( SIGCHLD, &oldactChld, 0 ) != 0 )
qWarning( "Error restoring SIGCHLD handler" );
tqWarning( "Error restoring SIGCHLD handler" );
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcessManager: restore old sigpipe handler" );
tqDebug( "QProcessManager: restore old sigpipe handler" );
#endif
if ( sigaction( SIGPIPE, &oldactPipe, 0 ) != 0 )
qWarning( "Error restoring SIGPIPE handler" );
tqWarning( "Error restoring SIGPIPE handler" );
}
void QProcessManager::append( QProc *p )
{
procList->append( p );
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcessManager: append process (procList.count(): %d)", procList->count() );
tqDebug( "QProcessManager: append process (procList.count(): %d)", procList->count() );
#endif
}
@ -344,7 +344,7 @@ void QProcessManager::remove( QProc *p )
{
procList->remove( p );
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcessManager: remove process (procList.count(): %d)", procList->count() );
tqDebug( "QProcessManager: remove process (procList.count(): %d)", procList->count() );
#endif
cleanup();
}
@ -359,7 +359,7 @@ void QProcessManager::cleanup()
void QProcessManager::removeMe()
{
if ( procList->count() == 0 ) {
qRemovePostRoutine(qprocess_cleanup);
tqRemovePostRoutine(qprocess_cleanup);
QProcessPrivate::procManager = 0;
delete this;
}
@ -381,7 +381,7 @@ void QProcessManager::sigchldHnd( int fd )
char tmp;
::read( fd, &tmp, sizeof(tmp) );
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcessManager::sigchldHnd()" );
tqDebug( "QProcessManager::sigchldHnd()" );
#endif
QProc *proc;
QProcess *process;
@ -393,7 +393,7 @@ void QProcessManager::sigchldHnd( int fd )
if ( process != 0 ) {
if ( !process->isRunning() ) {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcessManager::sigchldHnd() (PID: %d): process exited (QProcess available)", proc->pid );
tqDebug( "QProcessManager::sigchldHnd() (PID: %d): process exited (QProcess available)", proc->pid );
#endif
/*
Apparently, there is not consistency among different
@ -415,14 +415,14 @@ void QProcessManager::sigchldHnd( int fd )
// read pending data
if ( proc->socketStdout && ::ioctl(proc->socketStdout, FIONREAD, (char*)&nbytes)==0 && nbytes>0 ) {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcessManager::sigchldHnd() (PID: %d): reading %d bytes of pending data on stdout", proc->pid, nbytes );
tqDebug( "QProcessManager::sigchldHnd() (PID: %d): reading %d bytes of pending data on stdout", proc->pid, nbytes );
#endif
process->socketRead( proc->socketStdout );
}
nbytes = 0;
if ( proc->socketStderr && ::ioctl(proc->socketStderr, FIONREAD, (char*)&nbytes)==0 && nbytes>0 ) {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcessManager::sigchldHnd() (PID: %d): reading %d bytes of pending data on stderr", proc->pid, nbytes );
tqDebug( "QProcessManager::sigchldHnd() (PID: %d): reading %d bytes of pending data on stderr", proc->pid, nbytes );
#endif
process->socketRead( proc->socketStderr );
}
@ -450,7 +450,7 @@ void QProcessManager::sigchldHnd( int fd )
int status;
if ( ::waitpid( proc->pid, &status, WNOHANG ) == proc->pid ) {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcessManager::sigchldHnd() (PID: %d): process exited (QProcess not available)", proc->pid );
tqDebug( "QProcessManager::sigchldHnd() (PID: %d): process exited (QProcess not available)", proc->pid );
#endif
removeProc = TRUE;
}
@ -480,7 +480,7 @@ QProcessManager *QProcessPrivate::procManager = 0;
QProcessPrivate::QProcessPrivate()
{
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcessPrivate: Constructor" );
tqDebug( "QProcessPrivate: Constructor" );
#endif
stdinBufRead = 0;
@ -497,7 +497,7 @@ QProcessPrivate::QProcessPrivate()
QProcessPrivate::~QProcessPrivate()
{
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcessPrivate: Destructor" );
tqDebug( "QProcessPrivate: Destructor" );
#endif
if ( proc != 0 ) {
@ -543,7 +543,7 @@ void QProcessPrivate::newProc( pid_t pid, QProcess *process )
proc = new QProc( pid, process );
if ( procManager == 0 ) {
procManager = new QProcessManager;
qAddPostRoutine(qprocess_cleanup);
tqAddPostRoutine(qprocess_cleanup);
}
// the QProcessManager takes care of deleting the QProc instances
procManager->append( proc );
@ -700,7 +700,7 @@ QProcess::~QProcess()
bool QProcess::start( QStringList *env )
{
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::start()" );
tqDebug( "QProcess::start()" );
#endif
reset();
@ -760,7 +760,7 @@ bool QProcess::start( QStringList *env )
arglistQ[i] = (*it).local8Bit();
arglist[i] = arglistQ[i];
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::start(): arg %d = %s", i, arglist[i] );
tqDebug( "QProcess::start(): arg %d = %s", i, arglist[i] );
#endif
i++;
}
@ -788,7 +788,7 @@ bool QProcess::start( QStringList *env )
// in case the process exits quickly.
if ( d->procManager == 0 ) {
d->procManager = new QProcessManager;
qAddPostRoutine(qprocess_cleanup);
tqAddPostRoutine(qprocess_cleanup);
}
// fork and exec
@ -969,7 +969,7 @@ bool QProcess::start( QStringList *env )
error:
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::start(): error starting process" );
tqDebug( "QProcess::start(): error starting process" );
#endif
if ( d->procManager )
d->procManager->cleanup();
@ -1050,7 +1050,7 @@ bool QProcess::isRunning() const
{
if ( d->exitValuesCalculated ) {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::isRunning(): FALSE (already computed)" );
tqDebug( "QProcess::isRunning(): FALSE (already computed)" );
#endif
return FALSE;
}
@ -1080,12 +1080,12 @@ bool QProcess::isRunning() const
}
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::isRunning() (PID: %d): FALSE", d->proc->pid );
tqDebug( "QProcess::isRunning() (PID: %d): FALSE", d->proc->pid );
#endif
return FALSE;
}
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::isRunning() (PID: %d): TRUE", d->proc->pid );
tqDebug( "QProcess::isRunning() (PID: %d): TRUE", d->proc->pid );
#endif
return TRUE;
}
@ -1142,7 +1142,7 @@ bool QProcess::canReadLineStderr() const
void QProcess::writeToStdin( const QByteArray& buf )
{
#if defined(QT_QPROCESS_DEBUG)
// qDebug( "QProcess::writeToStdin(): write to stdin (%d)", d->socketStdin );
// tqDebug( "QProcess::writeToStdin(): write to stdin (%d)", d->socketStdin );
#endif
d->stdinBuf.enqueue( new QByteArray(buf) );
if ( d->notifierStdin != 0 )
@ -1169,10 +1169,10 @@ void QProcess::closeStdin()
delete d->notifierStdin;
d->notifierStdin = 0;
if ( ::close( d->proc->socketStdin ) != 0 ) {
qWarning( "Could not close stdin of child process" );
tqWarning( "Could not close stdin of child process" );
}
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::closeStdin(): stdin (%d) closed", d->proc->socketStdin );
tqDebug( "QProcess::closeStdin(): stdin (%d) closed", d->proc->socketStdin );
#endif
d->proc->socketStdin = 0;
}
@ -1193,7 +1193,7 @@ void QProcess::socketRead( int fd )
}
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::socketRead(): %d", fd );
tqDebug( "QProcess::socketRead(): %d", fd );
#endif
if ( fd == 0 )
return;
@ -1229,7 +1229,7 @@ void QProcess::socketRead( int fd )
if ( n == 0 || n == -1 ) {
if ( fd == d->proc->socketStdout ) {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::socketRead(): stdout (%d) closed", fd );
tqDebug( "QProcess::socketRead(): stdout (%d) closed", fd );
#endif
d->notifierStdout->setEnabled( FALSE );
delete d->notifierStdout;
@ -1239,7 +1239,7 @@ void QProcess::socketRead( int fd )
return;
} else if ( fd == d->proc->socketStderr ) {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::socketRead(): stderr (%d) closed", fd );
tqDebug( "QProcess::socketRead(): stderr (%d) closed", fd );
#endif
d->notifierStderr->setEnabled( FALSE );
delete d->notifierStderr;
@ -1279,13 +1279,13 @@ void QProcess::socketRead( int fd )
d->socketReadCalled = TRUE;
if ( fd == d->proc->socketStdout ) {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::socketRead(): %d bytes read from stdout (%d)",
tqDebug( "QProcess::socketRead(): %d bytes read from stdout (%d)",
buffer->size()-oldSize, fd );
#endif
emit readyReadStdout();
} else if ( fd == d->proc->socketStderr ) {
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::socketRead(): %d bytes read from stderr (%d)",
tqDebug( "QProcess::socketRead(): %d bytes read from stderr (%d)",
buffer->size()-oldSize, fd );
#endif
emit readyReadStderr();
@ -1309,7 +1309,7 @@ void QProcess::socketWrite( int fd )
d->stdinBuf.head()->data() + d->stdinBufRead,
d->stdinBuf.head()->size() - d->stdinBufRead );
#if defined(QT_QPROCESS_DEBUG)
qDebug( "QProcess::socketWrite(): wrote %d bytes to stdin (%d)", ret, fd );
tqDebug( "QProcess::socketWrite(): wrote %d bytes to stdin (%d)", ret, fd );
#endif
if ( ret == -1 )
return;

@ -1668,7 +1668,7 @@ unsigned short QPSPrinterFontPrivate::insertIntoSubset( unsigned short u )
pageSubsetCount++;
}
} else {
qWarning("QPSPrinterFont::internal error");
tqWarning("QPSPrinterFont::internal error");
}
return retval;
}
@ -1677,7 +1677,7 @@ void QPSPrinterFontPrivate::restore()
{
page_subset.clear();
pageSubsetCount = 0;
//qDebug("restore for font %s\n",psname.latin1());
//tqDebug("restore for font %s\n",psname.latin1());
}
static inline const char *toHex( uchar u )
@ -1814,7 +1814,7 @@ unsigned short QPSPrinterFontPrivate::mapUnicode( unsigned short unicode )
if ( !found ) {
return insertIntoSubset( unicode );
}
//qDebug("mapping unicode %x to %x", unicode, offset+*res);
//tqDebug("mapping unicode %x to %x", unicode, offset+*res);
return offset + *res;
}
@ -2289,7 +2289,7 @@ QPSPrinterFontTTF::QPSPrinterFontTTF(const QFontEngine *f, QByteArray& d)
else if (QString(environment_preference) == "3")
target_type = 3;
else
qWarning("The value of QT_TTFTOPS must be 42 or 3");
tqWarning("The value of QT_TTFTOPS must be 42 or 3");
}
#endif
offset_table = (unsigned char*) data.data(); /* first 12 bytes */
@ -2318,12 +2318,12 @@ QPSPrinterFontTTF::QPSPrinterFontTTF(const QFontEngine *f, QByteArray& d)
ury = topost( getFWord( ptr + 42 ) );
indexToLocFormat = getSHORT( ptr + 50 ); /* size of 'loca' data */
if(indexToLocFormat != 0 && indexToLocFormat != 1) {
qWarning("TrueType font is unusable because indexToLocFormat != 0");
tqWarning("TrueType font is unusable because indexToLocFormat != 0");
defective = TRUE;
return;
}
if( getSHORT(ptr+52) != 0 ) {
qWarning("TrueType font is unusable because glyphDataFormat != 0");
tqWarning("TrueType font is unusable because glyphDataFormat != 0");
defective = TRUE;
return;
}
@ -2340,7 +2340,7 @@ QPSPrinterFontTTF::QPSPrinterFontTTF(const QFontEngine *f, QByteArray& d)
BYTE* table_ptr = getTable("name"); /* pointer to table */
if ( !table_ptr ) {
defective = TRUE;
qDebug("couldn't find name table" );
tqDebug("couldn't find name table" );
return;
}
int numrecords = getUSHORT( table_ptr + 2 ); /* number of names */
@ -2392,8 +2392,8 @@ QPSPrinterFontTTF::QPSPrinterFontTTF(const QFontEngine *f, QByteArray& d)
Fixed post_format = getFixed( post_table );
if( post_format.whole != 2 || post_format.fraction != 0 ) {
qWarning("TrueType font does not have a format 2.0 'post' table");
qWarning("post format is %d.%d",post_format.whole,post_format.fraction);
tqWarning("TrueType font does not have a format 2.0 'post' table");
tqWarning("post format is %d.%d",post_format.whole,post_format.fraction);
// Sivan Feb 2001: no longer defective.
// defective = TRUE;
}
@ -2402,11 +2402,11 @@ QPSPrinterFontTTF::QPSPrinterFontTTF(const QFontEngine *f, QByteArray& d)
BYTE *maxp = getTable("maxp");
if ( !maxp ) {
defective = TRUE;
qDebug("no maxp table in font");
tqDebug("no maxp table in font");
return;
}
numGlyphs = getUSHORT( maxp + 4 );
// qDebug("number of glyphs is %d", numGlyphs);
// tqDebug("number of glyphs is %d", numGlyphs);
replacementList = makePSFontNameList( f, psname );
uni2glyphSetup();
}
@ -2505,8 +2505,8 @@ void QPSPrinterFontTTF::download(QTextStream& s,bool global)
return;
}
//qDebug("downloading ttf font %s", psname.latin1() );
//qDebug("target type=%d", target_type);
//tqDebug("downloading ttf font %s", psname.latin1() );
//tqDebug("target type=%d", target_type);
global_dict = global;
QMap<unsigned short, unsigned short> *subsetDict = &subset;
if ( !global )
@ -2716,7 +2716,7 @@ void QPSPrinterFontTTF::download(QTextStream& s,bool global)
} else { /* type 3 */
if (!glyphset[x]) continue;
//qDebug("emitting charproc for glyph %d, name=%s", x, glyphName(x).latin1() );
//tqDebug("emitting charproc for glyph %d, name=%s", x, glyphName(x).latin1() );
s << "/";
s << glyphName( x, glyphset );
s << "{";
@ -2916,7 +2916,7 @@ void QPSPrinterFontTTF::uni2glyphSetup()
}
}
if (map==nmaps) {
qWarning("Font does not have unicode encoding\n");
tqWarning("Font does not have unicode encoding\n");
return; // no unicode encoding!
}
@ -2928,7 +2928,7 @@ void QPSPrinterFontTTF::uni2glyphSetup()
//fprintf(stderr,"Unicode cmap format %d\n",format);
if (format != 4) {
//qWarning("Unicode cmap format is not 4");
//tqWarning("Unicode cmap format is not 4");
return;
}
@ -3145,7 +3145,7 @@ void QPSPrinterFontTTF::sfnts_glyf_table(ULONG oldoffset,
** two byte boundary.
*/
if( length % 2 ) {
qWarning("TrueType font contains a 'glyf' table without 2 byte padding");
tqWarning("TrueType font contains a 'glyf' table without 2 byte padding");
defective = TRUE;
return;
}
@ -3168,7 +3168,7 @@ void QPSPrinterFontTTF::sfnts_glyf_table(ULONG oldoffset,
/* Look for unexplainable descrepancies between sizes */
if( total != correct_total_length ) {
qWarning("QPSPrinterFontTTF::sfnts_glyf_table: total != correct_total_length");
tqWarning("QPSPrinterFontTTF::sfnts_glyf_table: total != correct_total_length");
defective = TRUE;
return;
}
@ -3260,7 +3260,7 @@ void QPSPrinterFontTTF::download_sfnts(QTextStream& s)
sfnts_pputUSHORT(81,s, string_len, line_len, in_string); /* rangeShift */
}
else {
qWarning("Fewer than 9 tables selected");
tqWarning("Fewer than 9 tables selected");
}
/* Now, emmit the table directory. */
@ -3297,7 +3297,7 @@ void QPSPrinterFontTTF::download_sfnts(QTextStream& s)
string_len, line_len, in_string);
} else { // other tables should not exceed 64K (not always true; Sivan)
if( tables[x].length > 65535 ) {
qWarning("TrueType font has a table which is too long");
tqWarning("TrueType font has a table which is too long");
defective = TRUE;
return;
}
@ -3699,7 +3699,7 @@ void QPSPrinterFontTTF::charprocLoad(BYTE *glyph, charproc_data* cd)
ct = *(glyph++);
if( (x + ct) > cd->num_pts ) {
qWarning("Fatal Error in TT flags");
tqWarning("Fatal Error in TT flags");
return;
}
@ -4053,7 +4053,7 @@ QPSPrinterFontPFA::QPSPrinterFontPFA(const QFontEngine *f, QByteArray& d)
QString fontname;
if (p[ pos ] != '%' || p[ pos+1 ] != '!') { // PFA marker
qWarning("invalid pfa file");
tqWarning("invalid pfa file");
return;
}
@ -4079,7 +4079,7 @@ void QPSPrinterFontPFA::download(QTextStream& s, bool global)
return;
}
//qDebug("downloading pfa font %s", psname.latin1() );
//tqDebug("downloading pfa font %s", psname.latin1() );
char* p = data.data();
s << "% Font resource\n";
@ -4111,7 +4111,7 @@ QPSPrinterFontPFB::QPSPrinterFontPFB(const QFontEngine *f, QByteArray& d)
QString fontname;
if (p[ pos ] != 0x80) { // PFB marker
qWarning("pfb file does not start with 0x80");
tqWarning("pfb file does not start with 0x80");
return;
}
pos++;
@ -4146,7 +4146,7 @@ void QPSPrinterFontPFB::download(QTextStream& s, bool global)
return;
}
//qDebug("downloading pfb font %s", psname.latin1() );
//tqDebug("downloading pfb font %s", psname.latin1() );
unsigned char* p = (unsigned char*) data.data();
int pos;
int len;
@ -4173,7 +4173,7 @@ void QPSPrinterFontPFB::download(QTextStream& s, bool global)
len |= (p[ pos ] << 16); pos++;
len |= (p[ pos ] << 24); pos++;
//qDebug("font block type %d len %d",typ,len);
//tqDebug("font block type %d len %d",typ,len);
int end = pos + len;
if (typ==1) {
@ -4182,7 +4182,7 @@ void QPSPrinterFontPFB::download(QTextStream& s, bool global)
s << "\n";
hexcol = 0;
}
//qWarning(QString::fromLatin1((char*)(p+pos),1));
//tqWarning(QString::fromLatin1((char*)(p+pos),1));
if (p[pos] == '\r' || p[pos] == '\n') {
s << "\n";
while (pos < end && (p[pos] == '\r' || p[pos] == '\n'))
@ -4233,7 +4233,7 @@ QPSPrinterFontNotFound::QPSPrinterFontNotFound(const QFontEngine* f)
void QPSPrinterFontNotFound::download(QTextStream& s, bool)
{
//qDebug("downloading not found font %s", psname.latin1() );
//tqDebug("downloading not found font %s", psname.latin1() );
emitPSFontNameList( s, psname, replacementList );
s << "% No embeddable font for ";
s << psname;
@ -4350,7 +4350,7 @@ QString QPSPrinterFontAsian::defineFont( QTextStream &stream, const QString &ps,
void QPSPrinterFontAsian::download(QTextStream& s, bool)
{
//qDebug("downloading asian font %s", psname.latin1() );
//tqDebug("downloading asian font %s", psname.latin1() );
s << "% Asian postscript font requested. Using "
<< psname << endl;
emitPSFontNameList( s, psname, replacementList );
@ -4871,7 +4871,7 @@ QPSPrinterFontSimplifiedChinese::QPSPrinterFontSimplifiedChinese(const QFontEngi
psname = SongGBK2K[type].psname;
appendReplacements( replacementList, SimplifiedReplacements, type );
}
//qDebug("simplified chinese: fontname is %s, psname=%s", f.family().latin1(), psname.latin1() );
//tqDebug("simplified chinese: fontname is %s, psname=%s", f.family().latin1(), psname.latin1() );
}
QString QPSPrinterFontSimplifiedChinese::extension() const
@ -4921,14 +4921,14 @@ QPSPrinterFont::QPSPrinterFont(const QFont &f, int script, QPSPrinterPrivate *pr
#if defined( Q_WS_X11 )
bool xlfd = FALSE;
//qDebug("engine = %p name=%s, script=%d", engine, engine ? engine->name() : "(null)", script);
//tqDebug("engine = %p name=%s, script=%d", engine, engine ? engine->name() : "(null)", script);
#ifndef QT_NO_XFTFREETYPE
if ( qt_has_xft && engine && engine->type() == QFontEngine::Xft ) {
XftPattern *pattern = static_cast<QFontEngineXft *>( engine )->pattern();
char *filename = 0;
XftPatternGetString (pattern, XFT_FILE, 0, &filename);
//qDebug("filename for font is '%s'", filename);
//tqDebug("filename for font is '%s'", filename);
if ( filename ) {
fontfilename = QString::fromLocal8Bit( filename );
xfontname = fontfilename;
@ -4996,7 +4996,7 @@ QPSPrinterFont::QPSPrinterFont(const QFont &f, int script, QPSPrinterPrivate *pr
xfontname += "/" + toString( script );
#endif
//qDebug("looking for font %s in dict", xfontname.latin1() );
//tqDebug("looking for font %s in dict", xfontname.latin1() );
p = priv->fonts.find(xfontname);
if ( p )
return;
@ -5014,15 +5014,15 @@ QPSPrinterFont::QPSPrinterFont(const QFont &f, int script, QPSPrinterPrivate *pr
fontmapname = (*it) + "/fonts.scale";
else
fontmapname = (*it) + "/fonts.dir";
//qWarning(fontmapname);
//tqWarning(fontmapname);
QFile fontmap(fontmapname);
if (fontmap.open(IO_ReadOnly)) {
while (!fontmap.atEnd()) {
QString mapping;
fontmap.readLine(mapping,512);
// fold to lower (since X folds to lowercase)
//qWarning(xfontname);
//qWarning(mapping);
//tqWarning(xfontname);
//tqWarning(mapping);
if (mapping.lower().contains(searchname.lower())) {
int index = mapping.find(' ',0);
QString ffn = mapping.mid(0,index);
@ -5031,7 +5031,7 @@ QPSPrinterFont::QPSPrinterFont(const QFont &f, int script, QPSPrinterPrivate *pr
!ffn.contains( ".spd" ) && !ffn.contains( ".phont" ) ) {
fontfilename = (*it) + QString("/") + ffn;
if ( QFile::exists(fontfilename) ) {
//qDebug("found font file %s", fontfilename.latin1());
//tqDebug("found font file %s", fontfilename.latin1());
break;
} else // unset fontfilename
fontfilename = QString();
@ -5046,7 +5046,7 @@ QPSPrinterFont::QPSPrinterFont(const QFont &f, int script, QPSPrinterPrivate *pr
}
#endif
//qDebug("font=%s, fontname=%s, file=%s, p=%p", f.family().latin1(), xfontname.latin1(), fontfilename.latin1(), p);
//tqDebug("font=%s, fontname=%s, file=%s, p=%p", f.family().latin1(), xfontname.latin1(), fontfilename.latin1(), p);
// memory mapping would be better here
if (fontfilename.length() > 0) { // maybe there is no file name
@ -5074,7 +5074,7 @@ QPSPrinterFont::QPSPrinterFont(const QFont &f, int script, QPSPrinterPrivate *pr
} else
type = NONE;
//qDebug("font is of type %d", type );
//tqDebug("font is of type %d", type );
switch (type) {
case TTF :
p = new QPSPrinterFontTTF(engine, data);
@ -5116,7 +5116,7 @@ QPSPrinterFont::QPSPrinterFont(const QFont &f, int script, QPSPrinterPrivate *pr
}
} else
#endif
//qDebug("didnt find font for %s", xfontname.latin1());
//tqDebug("didnt find font for %s", xfontname.latin1());
p = new QPSPrinterFontNotFound( engine );
break;
}
@ -5128,14 +5128,14 @@ QPSPrinterFont::QPSPrinterFont(const QFont &f, int script, QPSPrinterPrivate *pr
QDictIterator<QPSPrinterFontPrivate> it( priv->fonts );
for( it.toFirst(); it.current(); ++it ) {
if ( *(*it) == *p ) {
// qWarning("Post script driver: font already in dict");
// tqWarning("Post script driver: font already in dict");
delete p;
p = *it;
return;
}
}
//qDebug("inserting font %s in dict psname=%s", xfontname.latin1(), p->postScriptFontName().latin1() );
//tqDebug("inserting font %s in dict psname=%s", xfontname.latin1(), p->postScriptFontName().latin1() );
priv->fonts.insert( xfontname, p );
}
@ -5235,7 +5235,7 @@ void QPSPrinterPrivate::setFont( const QFont & fnt, int script )
}
if ( f.pointSize() == 0 ) {
#if defined(CHECK_RANGE)
qWarning( "QPrinter: Cannot set a font with zero point size." );
tqWarning( "QPrinter: Cannot set a font with zero point size." );
#endif
f.setPointSize(QApplication::font().pointSize());
if ( f.pointSize() == 0 )
@ -5529,7 +5529,7 @@ static QByteArray compress( const QImage & image, bool gray ) {
#if 0
/* this should never happen: both the start and
the end pointers ran off their tracks. */
qDebug( "oops! %06x %06x %06x %06x %5d %5d %5d %d",
tqDebug( "oops! %06x %06x %06x %06x %5d %5d %5d %d",
pixel[start], pixel[end],
pixel[index], pixel[index+bestLength],
start, end, index, bestLength );
@ -5716,20 +5716,20 @@ static QByteArray compress( const QImage & image, bool gray ) {
delete [] pixel;
#ifdef DEBUG_COMPRESS
qDebug( "------------- image compression statistics ----------------" );
qDebug(" compression time %d", t.elapsed() );
qDebug( "Size dist of uncompressed blocks:" );
qDebug( "\t%d\t%d\t%d\t%d\t%d\t%d\n", sizeUncompressed[0], sizeUncompressed[1],
tqDebug( "------------- image compression statistics ----------------" );
tqDebug(" compression time %d", t.elapsed() );
tqDebug( "Size dist of uncompressed blocks:" );
tqDebug( "\t%d\t%d\t%d\t%d\t%d\t%d\n", sizeUncompressed[0], sizeUncompressed[1],
sizeUncompressed[2], sizeUncompressed[3], sizeUncompressed[4], sizeUncompressed[5]);
qDebug( "\t%d\t%d\t%d\t%d\t%d\n", sizeUncompressed[6], sizeUncompressed[7],
tqDebug( "\t%d\t%d\t%d\t%d\t%d\n", sizeUncompressed[6], sizeUncompressed[7],
sizeUncompressed[8], sizeUncompressed[9], sizeUncompressed[10] );
qDebug( "Size dist of compressed blocks:" );
qDebug( "\t%d\t%d\t%d\t%d\t%d\t%d\n", sizeCompressed[0], sizeCompressed[1],
tqDebug( "Size dist of compressed blocks:" );
tqDebug( "\t%d\t%d\t%d\t%d\t%d\t%d\n", sizeCompressed[0], sizeCompressed[1],
sizeCompressed[2], sizeCompressed[3], sizeCompressed[4], sizeCompressed[5]);
qDebug( "\t%d\t%d\t%d\t%d\t%d\n", sizeCompressed[6], sizeCompressed[7],
tqDebug( "\t%d\t%d\t%d\t%d\t%d\n", sizeCompressed[6], sizeCompressed[7],
sizeCompressed[8], sizeCompressed[9], sizeCompressed[10] );
qDebug( "===> total compression ratio %d/%d = %f", outOffset, size, (float)outOffset/(float)size );
qDebug( "-----------------------------------------------------------" );
tqDebug( "===> total compression ratio %d/%d = %f", outOffset, size, (float)outOffset/(float)size );
tqDebug( "-----------------------------------------------------------" );
#endif
return outarr;
@ -6061,7 +6061,7 @@ void QPSPrinterPrivate::resetDrawingTools( QPainter *paint )
if ( b != defaultBrush ) {
if ( b == Qt::CustomPattern ) {
#if defined(CHECK_RANGE)
qWarning( "QPrinter: Pixmap brush not supported" );
tqWarning( "QPrinter: Pixmap brush not supported" );
#endif
} else {
cbrush = b;
@ -6171,7 +6171,7 @@ void QPSPrinterPrivate::flushPage( bool last )
(last || buffer->size() > 50000000)
#endif
) {
// qDebug("emiting header at page %d", pageCount );
// tqDebug("emiting header at page %d", pageCount );
emitHeader( last );
}
outStream << "%%Page: "
@ -6180,7 +6180,7 @@ void QPSPrinterPrivate::flushPage( bool last )
<< "QI\n";
if (!dirtyNewPage) {
if ( pageFonts ) {
//qDebug("page fonts for page %d", pageCount);
//tqDebug("page fonts for page %d", pageCount);
// we have already downloaded the header. Maybe we have page fonts here
QDictIterator<QPSPrinterFontPrivate> it(fonts);
while (it.current()) {
@ -6243,7 +6243,7 @@ static void ignoreSigPipe(bool b)
return; // not ignoring sigpipe
if (sigaction(SIGPIPE, users_sigpipe_handler, 0) == -1)
qWarning("QPSPrinter: could not restore SIGPIPE handler");
tqWarning("QPSPrinter: could not restore SIGPIPE handler");
delete users_sigpipe_handler;
users_sigpipe_handler = 0;
@ -6513,7 +6513,7 @@ bool QPSPrinter::cmd( int c , QPainter *paint, QPDevCmdParam *p )
case PdcSetROP:
#if defined(CHECK_RANGE)
if ( p[0].ival != Qt::CopyROP )
qWarning( "QPrinter: Raster operation setting not supported" );
tqWarning( "QPrinter: Raster operation setting not supported" );
#endif
break;
case PdcSetBrushOrigin:
@ -6534,7 +6534,7 @@ bool QPSPrinter::cmd( int c , QPainter *paint, QPDevCmdParam *p )
case PdcSetBrush:
if ( p[0].brush->style() == Qt::CustomPattern ) {
#if defined(CHECK_RANGE)
qWarning( "QPrinter: Pixmap brush not supported" );
tqWarning( "QPrinter: Pixmap brush not supported" );
#endif
return FALSE;
}

@ -174,7 +174,7 @@ void QRegion::exec( const QByteArray &buffer, int ver )
}
#if defined(QT_CHECK_STATE)
if ( test_cnt > 0 && id != QRGN_TRANSLATE )
qWarning( "QRegion::exec: Internal error" );
tqWarning( "QRegion::exec: Internal error" );
test_cnt++;
#endif
if ( id == QRGN_SETRECT || id == QRGN_SETELLIPSE ) {

@ -2433,7 +2433,7 @@ static void cleanup_empty_region()
QRegion::QRegion()
{
if ( !empty_region ) { // avoid too many allocs
qAddPostRoutine( cleanup_empty_region );
tqAddPostRoutine( cleanup_empty_region );
empty_region = new QRegion( TRUE );
Q_CHECK_PTR( empty_region );
}
@ -2469,7 +2469,7 @@ QRegion::QRegion( const QRect &r, RegionType t )
{
if ( r.isEmpty() ) {
if ( !empty_region ) { // avoid too many allocs
qAddPostRoutine( cleanup_empty_region );
tqAddPostRoutine( cleanup_empty_region );
empty_region = new QRegion( TRUE );
Q_CHECK_PTR( empty_region );
}
@ -2516,7 +2516,7 @@ QRegion::QRegion( const QPointArray &a, bool winding )
winding ? WindingRule : EvenOddRule );
} else {
if ( !empty_region ) {
qAddPostRoutine( cleanup_empty_region );
tqAddPostRoutine( cleanup_empty_region );
empty_region = new QRegion( TRUE );
Q_CHECK_PTR( empty_region );
}
@ -2551,7 +2551,7 @@ QRegion::QRegion( const QBitmap & bm )
{
if ( bm.isNull() ) {
if ( !empty_region ) { // avoid too many allocs
qAddPostRoutine( cleanup_empty_region );
tqAddPostRoutine( cleanup_empty_region );
empty_region = new QRegion( TRUE );
Q_CHECK_PTR( empty_region );
}

@ -214,7 +214,7 @@ QTextCursor *QTextDeleteCommand::execute( QTextCursor *c )
{
QTextParagraph *s = doc ? doc->paragAt( id ) : parag;
if ( !s ) {
qWarning( "can't locate parag at %d, last parag: %d", id, doc->lastParagraph()->paragId() );
tqWarning( "can't locate parag at %d, last parag: %d", id, doc->lastParagraph()->paragId() );
return 0;
}
@ -242,7 +242,7 @@ QTextCursor *QTextDeleteCommand::unexecute( QTextCursor *c )
{
QTextParagraph *s = doc ? doc->paragAt( id ) : parag;
if ( !s ) {
qWarning( "can't locate parag at %d, last parag: %d", id, doc->lastParagraph()->paragId() );
tqWarning( "can't locate parag at %d, last parag: %d", id, doc->lastParagraph()->paragId() );
return 0;
}
@ -1733,10 +1733,10 @@ void QTextDocument::setRichTextInternal( const QString &text, QTextCursor* curso
QString bg = attr["background"];
const QMimeSource* m = factory_->data( bg, contxt );
if ( !m ) {
qWarning("QRichText: no mimesource for %s", bg.latin1() );
tqWarning("QRichText: no mimesource for %s", bg.latin1() );
} else {
if ( !QImageDrag::decode( m, img ) ) {
qWarning("QTextImage: cannot decode %s", bg.latin1() );
tqWarning("QTextImage: cannot decode %s", bg.latin1() );
}
}
if ( !img.isNull() ) {
@ -2370,7 +2370,7 @@ QString QTextDocument::richText() const
QStyleSheetItem* item_ol = styleSheet()->item("ol");
QStyleSheetItem* item_li = styleSheet()->item("li");
if ( !item_p || !item_div || !item_ul || !item_ol || !item_li ) {
qWarning( "QTextEdit: cannot export HTML due to insufficient stylesheet (lack of p, div, ul, ol, or li)" );
tqWarning( "QTextEdit: cannot export HTML due to insufficient stylesheet (lack of p, div, ul, ol, or li)" );
return QString::null;
}
int pastListDepth = 0;
@ -4415,7 +4415,7 @@ int QTextParagraph::lineHeightOfChar( int i, int *bl, int *y ) const
--it;
}
qWarning( "QTextParagraph::lineHeightOfChar: couldn't find lh for %d", i );
tqWarning( "QTextParagraph::lineHeightOfChar: couldn't find lh for %d", i );
return 15;
}
@ -4441,7 +4441,7 @@ QTextStringChar *QTextParagraph::lineStartOfChar( int i, int *index, int *line )
--l;
}
qWarning( "QTextParagraph::lineStartOfChar: couldn't find %d", i );
tqWarning( "QTextParagraph::lineStartOfChar: couldn't find %d", i );
return 0;
}
@ -4468,7 +4468,7 @@ QTextStringChar *QTextParagraph::lineStartOfLine( int line, int *index ) const
return &str->at( i );
}
qWarning( "QTextParagraph::lineStartOfLine: couldn't find %d", line );
tqWarning( "QTextParagraph::lineStartOfLine: couldn't find %d", line );
return 0;
}
@ -5407,12 +5407,12 @@ QTextLineStart *QTextFormatter::bidiReorderLine( QTextParagraph * /*parag*/, QTe
visual = (int *)malloc( length*sizeof( int ) );
}
//qDebug("bidiReorderLine: length=%d (%d-%d)", length, start, last );
//tqDebug("bidiReorderLine: length=%d (%d-%d)", length, start, last );
QTextStringChar *ch = startChar;
unsigned char *l = levels;
while ( ch <= lastChar ) {
//qDebug( " level: %d", ch->bidiLevel );
//tqDebug( " level: %d", ch->bidiLevel );
*(l++) = (ch++)->bidiLevel;
}
@ -5472,7 +5472,7 @@ QTextLineStart *QTextFormatter::bidiReorderLine( QTextParagraph * /*parag*/, QTe
ch->x = x + toAdd;
ch->rightToLeft = ch->bidiLevel % 2;
//qDebug("visual: %d (%x) placed at %d rightToLeft=%d", visual[i], ch->c.unicode(), x +toAdd, ch->rightToLeft );
//tqDebug("visual: %d (%x) placed at %d rightToLeft=%d", visual[i], ch->c.unicode(), x +toAdd, ch->rightToLeft );
int ww = 0;
if ( ch->c.unicode() >= 32 || ch->c == '\t' || ch->c == '\n' || ch->isCustom() ) {
ww = text->width( start+visual[i] );
@ -6178,7 +6178,7 @@ QTextFormat *QTextFormatCollection::format( const QFont &f, const QColor &c )
cachedFormat->collection = this;
cKey.insert( cachedFormat->key(), cachedFormat );
if ( cachedFormat->key() != key )
qWarning("ASSERT: keys for format not identical: '%s '%s'", cachedFormat->key().latin1(), key.latin1() );
tqWarning("ASSERT: keys for format not identical: '%s '%s'", cachedFormat->key().latin1(), key.latin1() );
return cachedFormat;
}
@ -6597,11 +6597,11 @@ QTextImage::QTextImage( QTextDocument *p, const QMap<QString, QString> &attr, co
const QMimeSource* m =
factory.data( imageName, context );
if ( !m ) {
qWarning("QTextImage: no mimesource for %s", imageName.latin1() );
tqWarning("QTextImage: no mimesource for %s", imageName.latin1() );
}
else {
if ( !QImageDrag::decode( m, img ) ) {
qWarning("QTextImage: cannot decode %s", imageName.latin1() );
tqWarning("QTextImage: cannot decode %s", imageName.latin1() );
}
}
@ -7229,7 +7229,7 @@ static QMap<QString, QChar> *htmlMap()
{
if ( !html_map ) {
html_map = new QMap<QString, QChar>;
qAddPostRoutine( qt_cleanup_html_map );
tqAddPostRoutine( qt_cleanup_html_map );
const Entity *ent = entitylist;
while( ent->code ) {

@ -151,7 +151,7 @@ void QTextCursor::gotoPosition( QTextParagraph* p, int index )
para = p;
if ( index < 0 || index >= para->length() ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QTextCursor::gotoParagraph Index: %d out of range", index );
tqWarning( "QTextCursor::gotoParagraph Index: %d out of range", index );
#endif
if ( index < 0 || para->length() == 0 )
index = 0;
@ -506,7 +506,7 @@ bool QTextParagraph::fullSelected( int id ) const
int QTextParagraph::lineY( int l ) const
{
if ( l > (int)lineStarts.count() - 1 ) {
qWarning( "QTextParagraph::lineY: line %d out of range!", l );
tqWarning( "QTextParagraph::lineY: line %d out of range!", l );
return 0;
}
@ -522,7 +522,7 @@ int QTextParagraph::lineY( int l ) const
int QTextParagraph::lineBaseLine( int l ) const
{
if ( l > (int)lineStarts.count() - 1 ) {
qWarning( "QTextParagraph::lineBaseLine: line %d out of range!", l );
tqWarning( "QTextParagraph::lineBaseLine: line %d out of range!", l );
return 10;
}
@ -538,7 +538,7 @@ int QTextParagraph::lineBaseLine( int l ) const
int QTextParagraph::lineHeight( int l ) const
{
if ( l > (int)lineStarts.count() - 1 ) {
qWarning( "QTextParagraph::lineHeight: line %d out of range!", l );
tqWarning( "QTextParagraph::lineHeight: line %d out of range!", l );
return 15;
}
@ -554,8 +554,8 @@ int QTextParagraph::lineHeight( int l ) const
void QTextParagraph::lineInfo( int l, int &y, int &h, int &bl ) const
{
if ( l > (int)lineStarts.count() - 1 ) {
qWarning( "QTextParagraph::lineInfo: line %d out of range!", l );
qDebug( "%d %d", (int)lineStarts.count() - 1, l );
tqWarning( "QTextParagraph::lineInfo: line %d out of range!", l );
tqDebug( "%d %d", (int)lineStarts.count() - 1, l );
y = 0;
h = 15;
bl = 10;

@ -1981,7 +1981,7 @@ inline void QTextParagraph::setParagId( int i )
inline int QTextParagraph::paragId() const
{
if ( id == -1 )
qWarning( "invalid parag id!!!!!!!! (%p)", (void*)this );
tqWarning( "invalid parag id!!!!!!!! (%p)", (void*)this );
return id;
}

@ -120,7 +120,7 @@ static inline void positionCluster(QShaperItem *item, int gfrom, int glast)
{
int nmarks = glast - gfrom;
if (nmarks <= 0) {
qWarning("positionCluster: no marks to position!");
tqWarning("positionCluster: no marks to position!");
return;
}
@ -134,12 +134,12 @@ static inline void positionCluster(QShaperItem *item, int gfrom, int glast)
QRect baseRect(baseInfo.x, baseInfo.y, baseInfo.width, baseInfo.height);
// qDebug("---> positionCluster: cluster from %d to %d", gfrom, glast);
// qDebug("baseInfo: %f/%f (%f/%f) off=%f/%f", baseInfo.x, baseInfo.y, baseInfo.width, baseInfo.height, baseInfo.xoff, baseInfo.yoff);
// tqDebug("---> positionCluster: cluster from %d to %d", gfrom, glast);
// tqDebug("baseInfo: %f/%f (%f/%f) off=%f/%f", baseInfo.x, baseInfo.y, baseInfo.width, baseInfo.height, baseInfo.xoff, baseInfo.yoff);
int size = (f->ascent()/10);
int offsetBase = (size - 4) / 4 + QMIN(size, 4) + 1;
// qDebug("offset = %f", offsetBase);
// tqDebug("offset = %f", offsetBase);
bool rightToLeft = item->flags & QTextEngine::RightToLeft;
@ -152,7 +152,7 @@ static inline void positionCluster(QShaperItem *item, int gfrom, int glast)
QPoint p;
glyph_metrics_t markInfo = f->boundingBox(mark);
QRect markRect(markInfo.x, markInfo.y, markInfo.width, markInfo.height);
// qDebug("markInfo: %f/%f (%f/%f) off=%f/%f", markInfo.x, markInfo.y, markInfo.width, markInfo.height, markInfo.xoff, markInfo.yoff);
// tqDebug("markInfo: %f/%f (%f/%f) off=%f/%f", markInfo.x, markInfo.y, markInfo.width, markInfo.height, markInfo.xoff, markInfo.yoff);
int offset = offsetBase;
unsigned char cmb = item->attributes[gfrom+i].combiningClass;
@ -192,7 +192,7 @@ static inline void positionCluster(QShaperItem *item, int gfrom, int glast)
// combining marks of different class don't interact. Reset the rectangle.
if (cmb != lastCmb) {
//qDebug("resetting rect");
//tqDebug("resetting rect");
attachmentRect = baseRect;
}
@ -246,7 +246,7 @@ static inline void positionCluster(QShaperItem *item, int gfrom, int glast)
default:
break;
}
// qDebug("char=%x combiningClass = %d offset=%d/%d", mark, cmb, p.x(), p.y());
// tqDebug("char=%x combiningClass = %d offset=%d/%d", mark, cmb, p.x(), p.y());
markRect.moveBy(p.x(), p.y());
attachmentRect |= markRect;
lastCmb = cmb;
@ -287,7 +287,7 @@ static void heuristicSetGlyphAttributes(QShaperItem *item, const QChar *uc, int
// justification is missing here!!!!!
if ( item->num_glyphs != length )
qWarning("QScriptEngine::heuristicSetGlyphAttributes: char length and num glyphs disagree" );
tqWarning("QScriptEngine::heuristicSetGlyphAttributes: char length and num glyphs disagree" );
unsigned short *logClusters = item->log_clusters;
@ -899,7 +899,7 @@ struct QArabicProperties {
static void getArabicProperties(const unsigned short *chars, int len, QArabicProperties *properties)
{
// qDebug("arabicSyriacOpenTypeShape: properties:");
// tqDebug("arabicSyriacOpenTypeShape: properties:");
int lastPos = 0;
int lastGroup = ArabicNone;
@ -1005,7 +1005,7 @@ static void getArabicProperties(const unsigned short *chars, int len, QArabicPro
// for (int i = 0; i < len; ++i)
// qDebug("arabic properties(%d): uc=%x shape=%d, justification=%d", i, chars[i], properties[i].shape, properties[i].justification);
// tqDebug("arabic properties(%d): uc=%x shape=%d, justification=%d", i, chars[i], properties[i].shape, properties[i].justification);
}
@ -1326,7 +1326,7 @@ static inline int getShape(uchar cell, int shape)
*/
static inline const QChar prevChar(const QString *str, int pos)
{
//qDebug("leftChar: pos=%d", pos);
//tqDebug("leftChar: pos=%d", pos);
pos--;
const QChar *ch = str->unicode() + pos;
while(pos > -1) {
@ -1344,7 +1344,7 @@ static inline const QChar nextChar(const QString *str, int pos)
int len = str->length();
const QChar *ch = str->unicode() + pos;
while(pos < len) {
//qDebug("rightChar: %d isLetter=%d, joining=%d", pos, ch.isLetter(), ch.joining());
//tqDebug("rightChar: %d isLetter=%d, joining=%d", pos, ch.isLetter(), ch.joining());
if(::category(*ch) != QChar::Mark_NonSpacing)
return *ch;
// assume it's a transparent char, this might not be 100% correct
@ -1402,7 +1402,7 @@ static void shapedString(const QString *uc, int from, int len, QChar *shapeBuffe
uchar c = ch->cell();
int pos = i + from;
int shape = properties[i].shape;
// qDebug("mapping U+%x to shape %d glyph=0x%x", ch->unicode(), shape, getShape(c, shape));
// tqDebug("mapping U+%x to shape %d glyph=0x%x", ch->unicode(), shape, getShape(c, shape));
// take care of lam-alef ligatures (lam right of alef)
ushort map;
switch (c) {
@ -1414,7 +1414,7 @@ static void shapedString(const QString *uc, int from, int len, QChar *shapeBuffe
case 0x23:
case 0x25:
case 0x27:
// qDebug(" lam of lam-alef ligature");
// tqDebug(" lam of lam-alef ligature");
map = arabicUnicodeLamAlefMapping[pch.cell() - 0x22][shape];
goto next;
default:
@ -1429,7 +1429,7 @@ static void shapedString(const QString *uc, int from, int len, QChar *shapeBuffe
case 0x27: // alef
if (prevChar(uc, pos).unicode() == 0x0644) {
// have a lam alef ligature
//qDebug(" alef of lam-alef ligature");
//tqDebug(" alef of lam-alef ligature");
goto skip;
}
default:
@ -1443,7 +1443,7 @@ static void shapedString(const QString *uc, int from, int len, QChar *shapeBuffe
//attributes[gpos].zeroWidth = zeroWidth;
if (::category(*ch) == QChar::Mark_NonSpacing) {
attributes[gpos].mark = TRUE;
// qDebug("glyph %d (char %d) is mark!", gpos, i);
// tqDebug("glyph %d (char %d) is mark!", gpos, i);
} else {
attributes[gpos].mark = FALSE;
clusterStart = data - shapeBuffer;
@ -1451,7 +1451,7 @@ static void shapedString(const QString *uc, int from, int len, QChar *shapeBuffe
attributes[gpos].clusterStart = !attributes[gpos].mark;
attributes[gpos].combiningClass = combiningClass(*ch);
attributes[gpos].justification = properties[i].justification;
// qDebug("data[%d] = %x (from %x)", gpos, (uint)data->unicode(), ch->unicode());
// tqDebug("data[%d] = %x (from %x)", gpos, (uint)data->unicode(), ch->unicode());
data++;
skip:
ch++;

@ -1124,7 +1124,7 @@ static const unsigned short split_matras[] = {
static inline void splitMatra(unsigned short *reordered, int matra, int &len, int &base)
{
unsigned short matra_uc = reordered[matra];
//qDebug("matra=%d, reordered[matra]=%x", matra, reordered[matra]);
//tqDebug("matra=%d, reordered[matra]=%x", matra, reordered[matra]);
const unsigned short *split = split_matras;
while (split[0] < matra_uc)
@ -1189,9 +1189,9 @@ static const QOpenType::Features indic_features[] = {
// #define INDIC_DEBUG
#ifdef INDIC_DEBUG
#define IDEBUG qDebug
#define IDEBUG tqDebug
#else
#define IDEBUG if(0) qDebug
#define IDEBUG if(0) tqDebug
#endif
#ifdef INDIC_DEBUG
@ -1665,7 +1665,7 @@ static bool indic_shape_syllable(QOpenType *openType, QShaperItem *item, bool in
{
IDEBUG("OT properties:");
for (int i = 0; i < len; ++i)
qDebug(" i: %s", ::propertiesToString(properties[i]).toLatin1().data());
tqDebug(" i: %s", ::propertiesToString(properties[i]).toLatin1().data());
}
#endif
@ -1678,14 +1678,14 @@ static bool indic_shape_syllable(QOpenType *openType, QShaperItem *item, bool in
// move the left matra back to it's correct position in malayalam and tamil
if ((script == QFont::Malayalam || script == QFont::Tamil) && (form(reordered[0]) == Matra)) {
// qDebug("reordering matra, len=%d", newLen);
// tqDebug("reordering matra, len=%d", newLen);
// need to find the base in the shaped string and move the matra there
int basePos = 0;
while (basePos < newLen && (int)otl_glyphs[basePos].cluster <= base)
basePos++;
--basePos;
if (basePos < newLen && basePos > 1) {
// qDebug("moving prebase matra to position %d in syllable newlen=%d", basePos, newLen);
// tqDebug("moving prebase matra to position %d in syllable newlen=%d", basePos, newLen);
OTL_GlyphItemRec m = otl_glyphs[0];
--basePos;
for (i = 0; i < basePos; ++i)
@ -2092,7 +2092,7 @@ static int tibetan_nextSyllableBoundary(const QString &s, int start, int end, bo
int pos = 0;
TibetanForm state = tibetan_form(*uc);
// qDebug("state[%d]=%d (uc=%4x)", pos, state, uc[pos].unicode());
// tqDebug("state[%d]=%d (uc=%4x)", pos, state, uc[pos].unicode());
pos++;
if (state != TibetanHeadConsonant) {
@ -2473,9 +2473,9 @@ static const signed char khmerStateTable[][CC_COUNT] =
// #define KHMER_DEBUG
#ifdef KHMER_DEBUG
#define KHDEBUG qDebug
#define KHDEBUG tqDebug
#else
#define KHDEBUG if(0) qDebug
#define KHDEBUG if(0) tqDebug
#endif
// Given an input string of characters and a location in which to start looking
@ -2551,9 +2551,9 @@ static bool khmer_shape_syllable(QOpenType *openType, QShaperItem *item)
memset(properties, 0, 16*sizeof(unsigned char));
#ifdef KHMER_DEBUG
qDebug("original:");
tqDebug("original:");
for (int i = from; i < syllableEnd; i++) {
qDebug(" %d: %4x", i, string[i].unicode());
tqDebug(" %d: %4x", i, string[i].unicode());
}
#endif
@ -3001,9 +3001,9 @@ static const signed char mymrStateTable[][Mymr_CC_COUNT] =
// #define MYANMAR_DEBUG
#ifdef MYANMAR_DEBUG
#define MMDEBUG qDebug
#define MMDEBUG tqDebug
#else
#define MMDEBUG if(0) qDebug
#define MMDEBUG if(0) tqDebug
#endif
// Given an input string of characters and a location in which to start looking
@ -3082,9 +3082,9 @@ static bool myanmar_shape_syllable(QOpenType *openType, QShaperItem *item, bool
const QChar *uc = item->string->unicode() + item->from;
#ifdef MYANMAR_DEBUG
qDebug("original:");
tqDebug("original:");
for (int i = 0; i < item->length; i++) {
qDebug(" %d: %4x", i, uc[i].unicode());
tqDebug(" %d: %4x", i, uc[i].unicode());
}
#endif
int vowel_e = -1;

@ -381,7 +381,7 @@ void QSize::scale( const QSize &s, ScaleMode mode )
void QSize::warningDivByZero()
{
#if defined(QT_CHECK_MATH)
qWarning( "QSize: Division by zero error" );
tqWarning( "QSize: Division by zero error" );
#endif
}

@ -146,10 +146,10 @@ QSocketNotifier::QSocketNotifier( int socket, Type type, QObject *parent,
{
#if defined(QT_CHECK_RANGE)
if ( socket < 0 )
qWarning( "QSocketNotifier: Invalid socket specified" );
tqWarning( "QSocketNotifier: Invalid socket specified" );
# if defined(Q_OS_UNIX)
if ( socket >= FD_SETSIZE )
qWarning( "QSocketNotifier: Socket descriptor too large for select()" );
tqWarning( "QSocketNotifier: Socket descriptor too large for select()" );
# endif
#endif
sockfd = socket;

@ -157,7 +157,7 @@ static void qAppendItems(QTextEngine *engine, int &start, int &stop, BidiControl
if ( start > stop ) {
// #### the algorithm is currently not really safe against this. Still needs fixing.
// qWarning( "Bidi: appendItems() internal error" );
// tqWarning( "Bidi: appendItems() internal error" );
return;
}
@ -177,7 +177,7 @@ static void qAppendItems(QTextEngine *engine, int &start, int &stop, BidiControl
}
#if (BIDI_DEBUG >= 1)
qDebug("new run: dir=%s from %d, to %d level = %d\n", directions[dir], start, stop, level);
tqDebug("new run: dir=%s from %d, to %d level = %d\n", directions[dir], start, stop, level);
#endif
QFont::Script script = QFont::NoScript;
QScriptItem item;
@ -279,8 +279,8 @@ static void bidiItemize( QTextEngine *engine, bool rightToLeft, int mode )
status.last = status.lastStrong;
status.dir = sdir;
#if (BIDI_DEBUG >= 2)
qDebug("---- bidiReorder --- '%s'", engine->string.utf8().data());
qDebug("rightToLeft = %d", rightToLeft);
tqDebug("---- bidiReorder --- '%s'", engine->string.utf8().data());
tqDebug("rightToLeft = %d", rightToLeft);
#endif
@ -861,7 +861,7 @@ static void calcLineBreaks(const QString &str, QCharAttributes *charAttributes)
softBreak = (cls == QUnicodeTables::LineBreak_SP);
else
softBreak = (brk == Dbk);
// qDebug("char = %c %04x, cls=%d, ncls=%d, brk=%d soft=%d", uc[i].cell(), uc[i].unicode(), cls, ncls, brk, charAttributes[i].softBreak);
// tqDebug("char = %c %04x, cls=%d, ncls=%d, brk=%d soft=%d", uc[i].cell(), uc[i].unicode(), cls, ncls, brk, charAttributes[i].softBreak);
charAttributes[i].softBreak = softBreak;
charAttributes[i].whiteSpace = FALSE;
charAttributes[i].charStop = TRUE;
@ -1044,7 +1044,7 @@ void QTextEngine::splitItem( int item, int pos )
oldItem.width = w;
}
// qDebug("split at position %d itempos=%d", pos, item );
// tqDebug("split at position %d itempos=%d", pos, item );
}
@ -1052,12 +1052,12 @@ int QTextEngine::width( int from, int len ) const
{
int w = 0;
// qDebug("QTextEngine::width( from = %d, len = %d ), numItems=%d, strleng=%d", from, len, items.size(), string.length() );
// tqDebug("QTextEngine::width( from = %d, len = %d ), numItems=%d, strleng=%d", from, len, items.size(), string.length() );
for ( int i = 0; i < items.size(); i++ ) {
QScriptItem *si = &items[i];
int pos = si->position;
int ilen = length( i );
// qDebug("item %d: from %d len %d", i, pos, ilen );
// tqDebug("item %d: from %d len %d", i, pos, ilen );
if ( pos >= from + len )
break;
if ( pos + ilen > from ) {
@ -1089,13 +1089,13 @@ int QTextEngine::width( int from, int len ) const
charEnd++;
glyphEnd = (charEnd == ilen) ? si->num_glyphs : logClusters[charEnd];
// qDebug("char: start=%d end=%d / glyph: start = %d, end = %d", charFrom, charEnd, glyphStart, glyphEnd );
// tqDebug("char: start=%d end=%d / glyph: start = %d, end = %d", charFrom, charEnd, glyphStart, glyphEnd );
for ( int i = glyphStart; i < glyphEnd; i++ )
w += advances[i];
}
}
}
// qDebug(" --> w= %d ", w );
// tqDebug(" --> w= %d ", w );
return w;
}

@ -96,10 +96,10 @@ void QTextEngine::shape( int item ) const
shaper_item.has_positioning = FALSE;
while (1) {
// qDebug(" . num_glyphs=%d, used=%d, item.num_glyphs=%d", num_glyphs, used, shaper_item.num_glyphs);
// tqDebug(" . num_glyphs=%d, used=%d, item.num_glyphs=%d", num_glyphs, used, shaper_item.num_glyphs);
ensureSpace(shaper_item.num_glyphs);
shaper_item.num_glyphs = num_glyphs - used;
// qDebug(" .. num_glyphs=%d, used=%d, item.num_glyphs=%d", num_glyphs, used, shaper_item.num_glyphs);
// tqDebug(" .. num_glyphs=%d, used=%d, item.num_glyphs=%d", num_glyphs, used, shaper_item.num_glyphs);
shaper_item.glyphs = glyphs(&si);
shaper_item.advances = advances(&si);
shaper_item.offsets = offsets(&si);
@ -118,7 +118,7 @@ void QTextEngine::shape( int item ) const
advance_t *advances = this->advances( &si );
advance_t *end = advances + si.num_glyphs;
while ( advances < end ) {
// qDebug("advances[%d] = %d", advances - this->advances(&si), *advances);
// tqDebug("advances[%d] = %d", advances - this->advances(&si), *advances);
si.width += *(advances++);
}

@ -134,7 +134,7 @@ int QTextItem::cursorToX( int *cPos, Edge edge ) const
for ( int i = 0; i < glyph_pos; i++ )
x += advances[i];
}
// qDebug("cursorToX: pos=%d, gpos=%d x=%d", pos, glyph_pos, x );
// tqDebug("cursorToX: pos=%d, gpos=%d x=%d", pos, glyph_pos, x );
*cPos = pos;
return x;
}
@ -174,7 +174,7 @@ int QTextItem::xToCursor( int x, CursorPosition cpos ) const
cp_after = i;
for ( int j = lastCluster; j < newCluster; j++ )
x_after += advances[j];
// qDebug("cluster boundary: lastCluster=%d, newCluster=%d, x_before=%d, x_after=%d",
// tqDebug("cluster boundary: lastCluster=%d, newCluster=%d, x_before=%d, x_after=%d",
// lastCluster, newCluster, x_before, x_after );
if ( x_after > x )
break;
@ -184,7 +184,7 @@ int QTextItem::xToCursor( int x, CursorPosition cpos ) const
bool before = ( cpos == OnCharacters || (x - x_before) < (x_after - x) );
// qDebug("got cursor position for %d: %d/%d, x_ba=%d/%d using %d",
// tqDebug("got cursor position for %d: %d/%d, x_ba=%d/%d using %d",
// x, cp_before,cp_after, x_before, x_after, before ? cp_before : cp_after );
return before ? cp_before : cp_after;
@ -355,7 +355,7 @@ QTextLayout::Result QTextLayout::addCurrentItem()
QScriptItem &current = d->items[d->currentItem];
d->shape( d->currentItem );
d->widthUsed += current.width;
// qDebug("trying to add item %d with width %d, remaining %d", d->currentItem, current.width, d->lineWidth-d->widthUsed );
// tqDebug("trying to add item %d with width %d, remaining %d", d->currentItem, current.width, d->lineWidth-d->widthUsed );
d->currentItem++;
@ -376,7 +376,7 @@ QTextLayout::Result QTextLayout::endLine( int x, int y, int alignment,
int i;
QTextLayout::Result result = LineEmpty;
// qDebug("endLine x=%d, y=%d, first=%d, current=%d lw=%d wu=%d", x, y, d->firstItemInLine, d->currentItem, d->lineWidth, d->widthUsed );
// tqDebug("endLine x=%d, y=%d, first=%d, current=%d lw=%d wu=%d", x, y, d->firstItemInLine, d->currentItem, d->lineWidth, d->widthUsed );
int width_nobreak_found = d->widthUsed;
if ( d->firstItemInLine == -1 )
goto end;
@ -428,21 +428,21 @@ QTextLayout::Result QTextLayout::endLine( int x, int y, int alignment,
int lastGlyph = 0;
int tmpItemWidth = 0;
// qDebug("looking for break in item %d, isSpace=%d", i, si->isSpace );
// tqDebug("looking for break in item %d, isSpace=%d", i, si->isSpace );
if(si->isSpace && !(alignment & (Qt::SingleLine|Qt::IncludeTrailingSpaces))) {
swidth += si->width;
} else {
tmpWidth += swidth;
swidth = 0;
for ( int pos = 0; pos < length; pos++ ) {
// qDebug("advance=%d, w=%d, tmpWidth=%d, softbreak=%d, whitespace=%d",
// tqDebug("advance=%d, w=%d, tmpWidth=%d, softbreak=%d, whitespace=%d",
// *advances, w, tmpWidth, itemAttrs->softBreak, itemAttrs->whiteSpace );
int glyph = logClusters[pos];
if ( lastGlyph != glyph ) {
while ( lastGlyph < glyph )
tmpItemWidth += advances[lastGlyph++];
if ( breakPosition != -1 && w + tmpWidth + tmpItemWidth > d->lineWidth ) {
// qDebug("found break at w=%d, tmpWidth=%d, tmpItemWidth=%d", w, tmpWidth, tmpItemWidth);
// tqDebug("found break at w=%d, tmpWidth=%d, tmpItemWidth=%d", w, tmpWidth, tmpItemWidth);
d->widthUsed = w;
goto found;
}
@ -456,7 +456,7 @@ QTextLayout::Result QTextLayout::endLine( int x, int y, int alignment,
breakany = FALSE;
breakItem = i;
breakPosition = pos;
// qDebug("found possible break at item %d, position %d (absolute=%d), w=%d, tmpWidth=%d, tmpItemWidth=%d", breakItem, breakPosition, d->items[breakItem].position+breakPosition, w, tmpWidth, tmpItemWidth);
// tqDebug("found possible break at item %d, position %d (absolute=%d), w=%d, tmpWidth=%d, tmpItemWidth=%d", breakItem, breakPosition, d->items[breakItem].position+breakPosition, w, tmpWidth, tmpItemWidth);
w += tmpWidth + tmpItemWidth;
itemWidth += tmpItemWidth;
tmpWidth = 0;
@ -482,12 +482,12 @@ QTextLayout::Result QTextLayout::endLine( int x, int y, int alignment,
goto nobreak;
}
// qDebug("linebreak at item %d, position %d, wu=%d", breakItem, breakPosition, d->widthUsed );
// tqDebug("linebreak at item %d, position %d, wu=%d", breakItem, breakPosition, d->widthUsed );
// split the line
if ( breakPosition > 0 ) {
// int length = d->length( breakItem );
// qDebug("splitting item, itemWidth=%d", itemWidth);
// tqDebug("splitting item, itemWidth=%d", itemWidth);
// not a full item, need to break
d->splitItem( breakItem, breakPosition );
d->currentItem = breakItem+1;
@ -508,10 +508,10 @@ QTextLayout::Result QTextLayout::endLine( int x, int y, int alignment,
visual = new int[numRuns];
}
// qDebug("reordering %d runs, numSpaceItems=%d", numRuns, numSpaceItems );
// tqDebug("reordering %d runs, numSpaceItems=%d", numRuns, numSpaceItems );
for ( i = 0; i < numRuns; i++ ) {
levels[i] = d->items[i+d->firstItemInLine].analysis.bidiLevel;
// qDebug(" level = %d", d->items[i+d->firstItemInLine].analysis.bidiLevel );
// tqDebug(" level = %d", d->items[i+d->firstItemInLine].analysis.bidiLevel );
}
d->bidiReorder( numRuns, levels, visual );
@ -541,7 +541,7 @@ QTextLayout::Result QTextLayout::endLine( int x, int y, int alignment,
int left = x;
for ( i = 0; i < numRuns; i++ ) {
QScriptItem &si = d->items[d->firstItemInLine+visual[i]];
// qDebug("positioning item %d with width %d (from=%d/length=%d) at %d", d->firstItemInLine+visual[i], si.width, si.position,
// tqDebug("positioning item %d with width %d (from=%d/length=%d) at %d", d->firstItemInLine+visual[i], si.width, si.position,
// d->length(d->firstItemInLine+visual[i]), x );
si.x = x;
si.y = y + asc;
@ -593,7 +593,7 @@ void QTextLayout::endLayout()
int QTextLayout::nextCursorPosition( int oldPos, CursorMode mode ) const
{
// qDebug("looking for next cursor pos for %d", oldPos );
// tqDebug("looking for next cursor pos for %d", oldPos );
const QCharAttributes *attributes = d->attributes();
int len = d->string.length();
if ( oldPos >= len )
@ -606,13 +606,13 @@ int QTextLayout::nextCursorPosition( int oldPos, CursorMode mode ) const
while ( oldPos < len && !attributes[oldPos].wordStop && !attributes[oldPos-1].whiteSpace )
oldPos++;
}
// qDebug(" -> %d", oldPos );
// tqDebug(" -> %d", oldPos );
return oldPos;
}
int QTextLayout::previousCursorPosition( int oldPos, CursorMode mode ) const
{
// qDebug("looking for previous cursor pos for %d", oldPos );
// tqDebug("looking for previous cursor pos for %d", oldPos );
const QCharAttributes *attributes = d->attributes();
if ( oldPos <= 0 )
return 0;
@ -624,7 +624,7 @@ int QTextLayout::previousCursorPosition( int oldPos, CursorMode mode ) const
while ( oldPos && !attributes[oldPos].wordStop && !attributes[oldPos-1].whiteSpace )
oldPos--;
}
// qDebug(" -> %d", oldPos );
// tqDebug(" -> %d", oldPos );
return oldPos;
}

@ -80,7 +80,7 @@
{
for( int count = 0; count < 20; count++ ) {
sleep( 1 );
qDebug( "Ping!" );
tqDebug( "Ping!" );
}
}
@ -166,7 +166,7 @@ QThread::~QThread()
QMutexLocker locker( d->mutex() );
if ( d->running && !d->finished ) {
#ifdef QT_CHECK_STATE
qWarning("QThread object destroyed while thread is still running.");
tqWarning("QThread object destroyed while thread is still running.");
#endif
d->orphan = TRUE;

@ -131,7 +131,7 @@ void QThreadInstance::finish( void * )
if ( ! d ) {
#ifdef QT_CHECK_STATE
qWarning( "QThread: internal error: zero data for running thread." );
tqWarning( "QThread: internal error: zero data for running thread." );
#endif // QT_CHECK_STATE
return;
}
@ -328,7 +328,7 @@ void QThread::start(Priority priority)
if (pthread_attr_getschedpolicy(&attr, &sched_policy) != 0) {
// failed to get the scheduling policy, don't bother
// setting the priority
qWarning("QThread: cannot determine default scheduler policy");
tqWarning("QThread: cannot determine default scheduler policy");
break;
}
@ -337,7 +337,7 @@ void QThread::start(Priority priority)
if (prio_min == -1 || prio_max == -1) {
// failed to get the scheduling parameters, don't
// bother setting the priority
qWarning("QThread: cannot determine scheduler priority range");
tqWarning("QThread: cannot determine scheduler priority range");
break;
}
@ -378,7 +378,7 @@ void QThread::start(Priority priority)
if ( ret ) {
#ifdef QT_CHECK_STATE
qWarning( "QThread::start: thread stack size error: %s", strerror( ret ) ) ;
tqWarning( "QThread::start: thread stack size error: %s", strerror( ret ) ) ;
#endif // QT_CHECK_STATE
// we failed to set the stacksize, and as the documentation states,
@ -402,7 +402,7 @@ void QThread::start(Priority priority)
if ( ret ) {
#ifdef QT_CHECK_STATE
qWarning( "QThread::start: thread creation error: %s", strerror( ret ) );
tqWarning( "QThread::start: thread creation error: %s", strerror( ret ) );
#endif // QT_CHECK_STATE
d->running = FALSE;
@ -439,7 +439,7 @@ bool QThread::wait( unsigned long time )
if ( d->thread_id == pthread_self() ) {
#ifdef QT_CHECK_STATE
qWarning( "QThread::wait: thread tried to wait on itself" );
tqWarning( "QThread::wait: thread tried to wait on itself" );
#endif // QT_CHECK_STATE
return FALSE;
@ -464,7 +464,7 @@ bool QThread::wait( unsigned long time )
#ifdef QT_CHECK_RANGE
if (ret && ret != ETIMEDOUT)
qWarning("Wait condition wait failure: %s",strerror(ret));
tqWarning("Wait condition wait failure: %s",strerror(ret));
#endif
return (ret == 0);

@ -246,7 +246,7 @@ static void sst_init()
if ( !sst_list ) {
sst_list = new QObjectList;
Q_CHECK_PTR( sst_list );
qAddPostRoutine( sst_cleanup );
tqAddPostRoutine( sst_cleanup );
}
}

@ -492,13 +492,13 @@ bool QTranslator::load( const QString & filename, const QString & directory,
f = qt_open( QFile::encodeName(realname), O_RDONLY, 0666 );
if ( f < 0 ) {
// qDebug( "can't open %s: %s", realname.ascii(), strerror( errno ) );
// tqDebug( "can't open %s: %s", realname.ascii(), strerror( errno ) );
return FALSE;
}
struct stat st;
if ( fstat( f, &st ) ) {
// qDebug( "can't stat %s: %s", realname.ascii(), strerror( errno ) );
// tqDebug( "can't stat %s: %s", realname.ascii(), strerror( errno ) );
return FALSE;
}
char * tmp;
@ -507,7 +507,7 @@ bool QTranslator::load( const QString & filename, const QString & directory,
MAP_FILE | MAP_PRIVATE, // swap-backed map from file
f, 0 ); // from offset 0 of f
if ( !tmp || tmp == (char*)MAP_FAILED ) {
// qDebug( "can't mmap %s: %s", filename.ascii(), strerror( errno ) );
// tqDebug( "can't mmap %s: %s", filename.ascii(), strerror( errno ) );
return FALSE;
}
@ -845,7 +845,7 @@ void QTranslator::squeeze( SaveMode mode )
delete [] hTable;
if ( upto > 131072 ) {
qWarning( "QTranslator::squeeze: Too many contexts" );
tqWarning( "QTranslator::squeeze: Too many contexts" );
delete d->contextArray;
d->contextArray = 0;
}
@ -1029,7 +1029,7 @@ QTranslatorMessage QTranslator::findMessage( const char* context,
return QTranslatorMessage();
if ( systemWordSize == 0 )
qSysInfo( &systemWordSize, &systemBigEndian );
tqSysInfo( &systemWordSize, &systemBigEndian );
for ( ;; ) {
Q_UINT32 h = elfHash( QCString(sourceText) + comment );

@ -849,15 +849,15 @@ bool QUrl::parse( const QString& url )
d->cleanPathDirty = TRUE;
#if 0
qDebug( "URL: %s", url.latin1() );
qDebug( "protocol: %s", d->protocol.latin1() );
qDebug( "user: %s", d->user.latin1() );
qDebug( "pass: %s", d->pass.latin1() );
qDebug( "host: %s", d->host.latin1() );
qDebug( "path: %s", path().latin1() );
qDebug( "ref: %s", d->refEncoded.latin1() );
qDebug( "query: %s", d->queryEncoded.latin1() );
qDebug( "port: %d\n\n----------------------------\n\n", d->port );
tqDebug( "URL: %s", url.latin1() );
tqDebug( "protocol: %s", d->protocol.latin1() );
tqDebug( "user: %s", d->user.latin1() );
tqDebug( "pass: %s", d->pass.latin1() );
tqDebug( "host: %s", d->host.latin1() );
tqDebug( "path: %s", path().latin1() );
tqDebug( "ref: %s", d->refEncoded.latin1() );
tqDebug( "query: %s", d->queryEncoded.latin1() );
tqDebug( "port: %d\n\n----------------------------\n\n", d->port );
#endif
return TRUE;

@ -122,7 +122,7 @@ public:
A QUrlOperator can be used like this, for example to download a
file (and assuming that the FTP protocol is \link
qInitNetworkProtocols() registered\endlink):
tqInitNetworkProtocols() registered\endlink):
\code
QUrlOperator *op = new QUrlOperator();
op->copy( QString("ftp://ftp.trolltech.com/qt/source/qt-2.1.0.tar.gz"),
@ -148,7 +148,7 @@ public:
handling deals with this problem.
To register the available network protocols, use the
qInitNetworkProtocols() function. The protocols currently
tqInitNetworkProtocols() function. The protocols currently
supported are:
\list
\i \link QFtp FTP\endlink,
@ -293,7 +293,7 @@ QUrlOperator::QUrlOperator()
: QUrl()
{
#ifdef QURLOPERATOR_DEBUG
qDebug( "QUrlOperator: cstr 1" );
tqDebug( "QUrlOperator: cstr 1" );
#endif
d = new QUrlOperatorPrivate;
}
@ -309,7 +309,7 @@ QUrlOperator::QUrlOperator( const QString &url )
: QUrl( url )
{
#ifdef QURLOPERATOR_DEBUG
qDebug( "QUrlOperator: cstr 2" );
tqDebug( "QUrlOperator: cstr 2" );
#endif
d = new QUrlOperatorPrivate;
getNetworkProtocol();
@ -323,7 +323,7 @@ QUrlOperator::QUrlOperator( const QUrlOperator& url )
: QObject(), QUrl( url )
{
#ifdef QURLOPERATOR_DEBUG
qDebug( "QUrlOperator: cstr 3" );
tqDebug( "QUrlOperator: cstr 3" );
#endif
d = new QUrlOperatorPrivate;
*d = *url.d;
@ -345,7 +345,7 @@ QUrlOperator::QUrlOperator( const QUrlOperator& url, const QString& relUrl, bool
: QUrl( url, relUrl, checkSlash )
{
#ifdef QURLOPERATOR_DEBUG
qDebug( "QUrlOperator: cstr 4" );
tqDebug( "QUrlOperator: cstr 4" );
#endif
d = new QUrlOperatorPrivate;
if ( relUrl == "." )
@ -363,7 +363,7 @@ QUrlOperator::QUrlOperator( const QUrlOperator& url, const QString& relUrl, bool
QUrlOperator::~QUrlOperator()
{
#ifdef QURLOPERATOR_DEBUG
qDebug( "QUrlOperator: dstr" );
tqDebug( "QUrlOperator: dstr" );
#endif
delete d;
}
@ -570,7 +570,7 @@ const QNetworkOperation *QUrlOperator::rename( const QString &oldname, const QSt
QPtrList<QNetworkOperation> QUrlOperator::copy( const QString &from, const QString &to, bool move, bool toPath )
{
#ifdef QURLOPERATOR_DEBUG
qDebug( "QUrlOperator: copy %s %s %d", from.latin1(), to.latin1(), move );
tqDebug( "QUrlOperator: copy %s %s %d", from.latin1(), to.latin1(), move );
#endif
QPtrList<QNetworkOperation> ops;
@ -644,7 +644,7 @@ QPtrList<QNetworkOperation> QUrlOperator::copy( const QString &from, const QStri
gProt->setAutoDelete( TRUE );
}
#ifdef QURLOPERATOR_DEBUG
qDebug( "QUrlOperator: copy operation should start now..." );
tqDebug( "QUrlOperator: copy operation should start now..." );
#endif
return ops;
} else {
@ -1063,7 +1063,7 @@ bool QUrlOperator::checkValid()
void QUrlOperator::copyGotData( const QByteArray &data_, QNetworkOperation *op )
{
#ifdef QURLOPERATOR_DEBUG
qDebug( "QUrlOperator: copyGotData: %d new bytes", data_.size() );
tqDebug( "QUrlOperator: copyGotData: %d new bytes", data_.size() );
#endif
QNetworkOperation *put = d->getOpPutOpMap[ (void*)op ];
if ( put ) {
@ -1089,7 +1089,7 @@ void QUrlOperator::continueCopy( QNetworkOperation *op )
#ifdef QURLOPERATOR_DEBUG
if ( op->state() != QNetworkProtocol::StFailed ) {
qDebug( "QUrlOperator: continue copy (get finished, put will start)" );
tqDebug( "QUrlOperator: continue copy (get finished, put will start)" );
}
#endif
@ -1134,7 +1134,7 @@ void QUrlOperator::continueCopy( QNetworkOperation *op )
void QUrlOperator::finishedCopy()
{
#ifdef QURLOPERATOR_DEBUG
qDebug( "QUrlOperator: finished copy (finished putting)" );
tqDebug( "QUrlOperator: finished copy (finished putting)" );
#endif
if ( d->waitingCopies.isEmpty() )

@ -408,7 +408,7 @@ void QVariant::Private::clear()
QDataStream in(...); // (opening the previously written stream)
in >> v; // Reads an Int variant
int z = v.toInt(); // z = 123
qDebug("Type is %s", // prints "Type is int"
tqDebug("Type is %s", // prints "Type is int"
v.typeName());
v.asInt() += 100; // The variant now hold the value 223.
v = QVariant( QStringList() );

@ -882,7 +882,7 @@ QWidget::QWidget( QWidget *parent, const char *name, WFlags f, NFlags n )
{
#if defined(QT_CHECK_STATE) && !defined(Q_WS_WIN)
if ( qApp->type() == QApplication::Tty ) {
qWarning( "QWidget: Cannot create a QWidget when no GUI "
tqWarning( "QWidget: Cannot create a QWidget when no GUI "
"is being used" );
}
#endif
@ -954,7 +954,7 @@ QWidget::~QWidget()
{
#if defined (QT_CHECK_STATE)
if ( paintingActive() )
qWarning( "%s (%s): deleted while being painted", className(), name() );
tqWarning( "%s (%s): deleted while being painted", className(), name() );
#endif
// Remove myself and all children from the can-take-focus list
@ -2671,7 +2671,7 @@ void QWidget::setBackgroundMode( BackgroundMode m, BackgroundMode visual )
setBackgroundEmpty();
} else if ( m == FixedColor || m == FixedPixmap ) {
#if defined(QT_DEBUG)
qWarning( "QWidget::setBackgroundMode: FixedColor or FixedPixmap makes"
tqWarning( "QWidget::setBackgroundMode: FixedColor or FixedPixmap makes"
" no sense" );
#endif
return;
@ -3181,7 +3181,7 @@ void QWidget::setFocusProxy( QWidget * w )
for ( QWidget* fp = w; fp; fp = fp->focusProxy() ) {
if ( fp == this ) {
#if defined (QT_CHECK_STATE)
qWarning( "%s (%s): already in focus proxy chain", className(), name() );
tqWarning( "%s (%s): already in focus proxy chain", className(), name() );
#endif
return;
}

@ -1250,7 +1250,7 @@ qstring_to_xtp( const QString& s )
tl, 1, XStdICCTextStyle, &tp );
#if defined(QT_DEBUG)
if ( errCode < 0 )
qDebug( "qstring_to_xtp result code %d", errCode );
tqDebug( "qstring_to_xtp result code %d", errCode );
#endif
}
if ( !mapper || errCode < 0 ) {
@ -1422,7 +1422,7 @@ void QWidget::grabMouse()
status == GrabFrozen ? "\"GrabFrozen\"" :
status == GrabInvalidTime ? "\"GrabInvalidTime\"" :
"<?>";
qWarning( "Grabbing the mouse failed with %s", s );
tqWarning( "Grabbing the mouse failed with %s", s );
}
#endif
mouseGrb = this;
@ -1464,7 +1464,7 @@ void QWidget::grabMouse( const QCursor &cursor )
status == GrabFrozen ? "\"GrabFrozen\"" :
status == GrabInvalidTime ? "\"GrabInvalidTime\"" :
"<?>";
qWarning( "Grabbing the mouse failed with %s", s );
tqWarning( "Grabbing the mouse failed with %s", s );
}
#endif
mouseGrb = this;
@ -2215,7 +2215,7 @@ void QWidget::setMinimumSize( int minw, int minh )
{
#if defined(QT_CHECK_RANGE)
if ( minw < 0 || minh < 0 )
qWarning("QWidget::setMinimumSize: The smallest allowed size is (0,0)");
tqWarning("QWidget::setMinimumSize: The smallest allowed size is (0,0)");
#endif
createExtra();
if ( extra->minw == minw && extra->minh == minh )
@ -2244,7 +2244,7 @@ void QWidget::setMaximumSize( int maxw, int maxh )
{
#if defined(QT_CHECK_RANGE)
if ( maxw > QWIDGETSIZE_MAX || maxh > QWIDGETSIZE_MAX ) {
qWarning("QWidget::setMaximumSize: (%s/%s) "
tqWarning("QWidget::setMaximumSize: (%s/%s) "
"The largest allowed size is (%d,%d)",
name( "unnamed" ), className(), QWIDGETSIZE_MAX,
QWIDGETSIZE_MAX );
@ -2252,7 +2252,7 @@ void QWidget::setMaximumSize( int maxw, int maxh )
maxh = QMIN( maxh, QWIDGETSIZE_MAX );
}
if ( maxw < 0 || maxh < 0 ) {
qWarning("QWidget::setMaximumSize: (%s/%s) Negative sizes (%d,%d) "
tqWarning("QWidget::setMaximumSize: (%s/%s) Negative sizes (%d,%d) "
"are not possible",
name( "unnamed" ), className(), maxw, maxh );
maxw = QMAX( maxw, 0 );
@ -2546,7 +2546,7 @@ int QWidget::metric( int m ) const
default:
val = 0;
#if defined(QT_CHECK_RANGE)
qWarning( "QWidget::metric: Invalid metric command" );
tqWarning( "QWidget::metric: Invalid metric command" );
#endif
}
}
@ -2800,7 +2800,7 @@ void QWidget::updateFrameStrut() const
XFree(c);
if (! p) {
qWarning("QWidget::updateFrameStrut(): ERROR - no parent");
tqWarning("QWidget::updateFrameStrut(): ERROR - no parent");
return;
}

@ -185,8 +185,8 @@ Q_EXPORT const char *qAppName(); // get application name
// Misc functions
typedef void (*QtCleanUpFunction)();
Q_EXPORT void qAddPostRoutine( QtCleanUpFunction );
Q_EXPORT void qRemovePostRoutine( QtCleanUpFunction );
Q_EXPORT void tqAddPostRoutine( QtCleanUpFunction );
Q_EXPORT void tqRemovePostRoutine( QtCleanUpFunction );
#if !defined(QT_CLEAN_NAMESPACE)
// source compatibility with Qt 2.x

@ -702,8 +702,8 @@ QPointArray QWMatrix::mapToPolygon( const QRect &rect ) const
#if 0
int i;
for( i = 0; i< 4; i++ )
qDebug("coords(%d) = (%f/%f) (%d/%d)", i, x[i], y[i], qRound(x[i]), qRound(y[i]) );
qDebug( "width=%f, height=%f", sqrt( (x[1]-x[0])*(x[1]-x[0]) + (y[1]-y[0])*(y[1]-y[0]) ),
tqDebug("coords(%d) = (%f/%f) (%d/%d)", i, x[i], y[i], qRound(x[i]), qRound(y[i]) );
tqDebug( "width=%f, height=%f", sqrt( (x[1]-x[0])*(x[1]-x[0]) + (y[1]-y[0])*(y[1]-y[0]) ),
sqrt( (x[0]-x[3])*(x[0]-x[3]) + (y[0]-y[3])*(y[0]-y[3]) ) );
#endif
// all coordinates are correctly, tranform to a pointarray

@ -264,13 +264,13 @@ STRING {ALMOSTSTRING}\"
<QT_DEF>[_a-zA-Z][_a-zA-Z0-9]* {
X;
yylval.string = qstrdup(yytext);
yylval.string = tqstrdup(yytext);
return IDENTIFIER;
}
<IN_PROPERTY>[_a-zA-Z][_a-zA-Z0-9]* {
X;
yylval.string = qstrdup(yytext);
yylval.string = tqstrdup(yytext);
return IDENTIFIER;
}
@ -280,7 +280,7 @@ STRING {ALMOSTSTRING}\"
<IN_CLASSINFO>{ALMOSTSTRING} {
X;
yylval.string = qstrdup( yytext + 1 );
yylval.string = tqstrdup( yytext + 1 );
input(); /* discard the '"' */
return STRING;
}
@ -317,7 +317,7 @@ STRING {ALMOSTSTRING}\"
<QT_DEF>{ALMOSTSTRING} {
X;
yylval.string = qstrdup( yytext + 1 );
yylval.string = tqstrdup( yytext + 1 );
input(); /* discard the '"' */
return STRING;
}

@ -1827,7 +1827,7 @@ YY_RULE_SETUP
#line 262 "moc.l"
{
X;
yylval.string = qstrdup(yytext);
yylval.string = tqstrdup(yytext);
return IDENTIFIER;
}
YY_BREAK
@ -1836,7 +1836,7 @@ YY_RULE_SETUP
#line 268 "moc.l"
{
X;
yylval.string = qstrdup(yytext);
yylval.string = tqstrdup(yytext);
return IDENTIFIER;
}
YY_BREAK
@ -1861,7 +1861,7 @@ YY_RULE_SETUP
#line 278 "moc.l"
{
X;
yylval.string = qstrdup( yytext + 1 );
yylval.string = tqstrdup( yytext + 1 );
input(); /* discard the '"' */
return STRING;
}
@ -1932,7 +1932,7 @@ YY_RULE_SETUP
#line 315 "moc.l"
{
X;
yylval.string = qstrdup( yytext + 1 );
yylval.string = tqstrdup( yytext + 1 );
input(); /* discard the '"' */
return STRING;
}

@ -411,7 +411,7 @@ void QDnsAnswer::parseA()
{
if ( next != pp + 4 ) {
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw %d bytes long IN A for %s",
tqDebug( "QDns: saw %d bytes long IN A for %s",
next - pp, label.ascii() );
#endif
return;
@ -424,7 +424,7 @@ void QDnsAnswer::parseA()
( answer[pp+2] << 8 ) +
( answer[pp+3] ) );
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw %s IN A %s (ttl %d)", label.ascii(),
tqDebug( "QDns: saw %s IN A %s (ttl %d)", label.ascii(),
rr->address.toString().ascii(), ttl );
#endif
}
@ -434,7 +434,7 @@ void QDnsAnswer::parseAaaa()
{
if ( next != pp + 16 ) {
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw %d bytes long IN Aaaa for %s",
tqDebug( "QDns: saw %d bytes long IN Aaaa for %s",
next - pp, label.ascii() );
#endif
return;
@ -444,7 +444,7 @@ void QDnsAnswer::parseAaaa()
rr->t = QDns::Aaaa;
rr->address = QHostAddress( answer+pp );
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw %s IN Aaaa %s (ttl %d)", label.ascii(),
tqDebug( "QDns: saw %s IN Aaaa %s (ttl %d)", label.ascii(),
rr->address.toString().ascii(), ttl );
#endif
}
@ -455,7 +455,7 @@ void QDnsAnswer::parseMx()
{
if ( next < pp + 2 ) {
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw %d bytes long IN MX for %s",
tqDebug( "QDns: saw %d bytes long IN MX for %s",
next - pp, label.ascii() );
#endif
return;
@ -467,13 +467,13 @@ void QDnsAnswer::parseMx()
rr->target = readString().lower();
if ( !ok ) {
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw bad string in MX for %s", label.ascii() );
tqDebug( "QDns: saw bad string in MX for %s", label.ascii() );
#endif
return;
}
rr->t = QDns::Mx;
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw %s IN MX %d %s (ttl %d)", label.ascii(),
tqDebug( "QDns: saw %s IN MX %d %s (ttl %d)", label.ascii(),
rr->priority, rr->target.ascii(), ttl );
#endif
}
@ -483,7 +483,7 @@ void QDnsAnswer::parseSrv()
{
if ( next < pp + 6 ) {
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw %d bytes long IN SRV for %s",
tqDebug( "QDns: saw %d bytes long IN SRV for %s",
next - pp, label.ascii() );
#endif
return;
@ -497,13 +497,13 @@ void QDnsAnswer::parseSrv()
rr->target = readString().lower();
if ( !ok ) {
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw bad string in SRV for %s", label.ascii() );
tqDebug( "QDns: saw bad string in SRV for %s", label.ascii() );
#endif
return;
}
rr->t = QDns::Srv;
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw %s IN SRV %d %d %d %s (ttl %d)", label.ascii(),
tqDebug( "QDns: saw %s IN SRV %d %d %d %s (ttl %d)", label.ascii(),
rr->priority, rr->weight, rr->port, rr->target.ascii(), ttl );
#endif
}
@ -514,7 +514,7 @@ void QDnsAnswer::parseCname()
QString target = readString().lower();
if ( !ok ) {
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw bad cname for for %s", label.ascii() );
tqDebug( "QDns: saw bad cname for for %s", label.ascii() );
#endif
return;
}
@ -523,7 +523,7 @@ void QDnsAnswer::parseCname()
rr->t = QDns::Cname;
rr->target = target;
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw %s IN CNAME %s (ttl %d)", label.ascii(),
tqDebug( "QDns: saw %s IN CNAME %s (ttl %d)", label.ascii(),
rr->target.ascii(), ttl );
#endif
}
@ -534,7 +534,7 @@ void QDnsAnswer::parseNs()
QString target = readString().lower();
if ( !ok ) {
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw bad cname for for %s", label.ascii() );
tqDebug( "QDns: saw bad cname for for %s", label.ascii() );
#endif
return;
}
@ -542,7 +542,7 @@ void QDnsAnswer::parseNs()
// parse, but ignore
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw %s IN NS %s (ttl %d)", label.ascii(),
tqDebug( "QDns: saw %s IN NS %s (ttl %d)", label.ascii(),
target.ascii(), ttl );
#endif
}
@ -553,7 +553,7 @@ void QDnsAnswer::parsePtr()
QString target = readString().lower();
if ( !ok ) {
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw bad PTR for for %s", label.ascii() );
tqDebug( "QDns: saw bad PTR for for %s", label.ascii() );
#endif
return;
}
@ -562,7 +562,7 @@ void QDnsAnswer::parsePtr()
rr->t = QDns::Ptr;
rr->target = target;
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw %s IN PTR %s (ttl %d)", label.ascii(),
tqDebug( "QDns: saw %s IN PTR %s (ttl %d)", label.ascii(),
rr->target.ascii(), ttl );
#endif
}
@ -573,7 +573,7 @@ void QDnsAnswer::parseTxt()
QString text = readString(FALSE);
if ( !ok ) {
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw bad TXT for for %s", label.ascii() );
tqDebug( "QDns: saw bad TXT for for %s", label.ascii() );
#endif
return;
}
@ -582,7 +582,7 @@ void QDnsAnswer::parseTxt()
rr->t = QDns::Txt;
rr->text = text;
#if defined(QDNS_DEBUG)
qDebug( "QDns: saw %s IN TXT \"%s\" (ttl %d)", label.ascii(),
tqDebug( "QDns: saw %s IN TXT \"%s\" (ttl %d)", label.ascii(),
rr->text.ascii(), ttl );
#endif
}
@ -593,7 +593,7 @@ void QDnsAnswer::parse()
// okay, do the work...
if ( (answer[2] & 0x78) != 0 ) {
#if defined(QDNS_DEBUG)
qDebug( "DNS Manager: answer to wrong query type (%d)", answer[1] );
tqDebug( "DNS Manager: answer to wrong query type (%d)", answer[1] );
#endif
ok = FALSE;
return;
@ -605,7 +605,7 @@ void QDnsAnswer::parse()
// TC
if ( (answer[2] & 2) != 0 ) {
#if defined(QDNS_DEBUG)
qDebug( "DNS Manager: truncated answer; pressing on" );
tqDebug( "DNS Manager: truncated answer; pressing on" );
#endif
}
@ -617,7 +617,7 @@ void QDnsAnswer::parse()
if ( (answer[3] & 0x0f) == 3 ) {
#if defined(QDNS_DEBUG)
qDebug( "DNS Manager: saw NXDomain for %s", query->l.ascii() );
tqDebug( "DNS Manager: saw NXDomain for %s", query->l.ascii() );
#endif
// NXDomain. cache that for one minute.
rr = new QDnsRR( query->l );
@ -632,7 +632,7 @@ void QDnsAnswer::parse()
if ( (answer[3] & 0x0f) != 0 ) {
#if defined(QDNS_DEBUG)
qDebug( "DNS Manager: error code %d", answer[3] & 0x0f );
tqDebug( "DNS Manager: error code %d", answer[3] & 0x0f );
#endif
ok = FALSE;
return;
@ -671,7 +671,7 @@ void QDnsAnswer::parse()
rdlength = ( answer[pp+8] << 8 ) + answer[pp+9];
if ( pp + 10 + rdlength > size ) {
#if defined(QDNS_DEBUG)
qDebug( "DNS Manager: ran out of stuff to parse (%d+%d>%d (%d)",
tqDebug( "DNS Manager: ran out of stuff to parse (%d+%d>%d (%d)",
pp, rdlength, size, rrno < ancount );
#endif
// if we're still in the AN section, we should go back and
@ -689,7 +689,7 @@ void QDnsAnswer::parse()
pp = pp + 10;
if ( clas != 1 ) {
#if defined(QDNS_DEBUG)
qDebug( "DNS Manager: class %d (not internet) for %s",
tqDebug( "DNS Manager: class %d (not internet) for %s",
clas, label.isNull() ? "." : label.ascii() );
#endif
} else {
@ -723,7 +723,7 @@ void QDnsAnswer::parse()
default:
// something we don't know
#if defined(QDNS_DEBUG)
qDebug( "DNS Manager: type %d for %s", type,
tqDebug( "DNS Manager: type %d for %s", type,
label.isNull() ? "." : label.ascii() );
#endif
break;
@ -750,7 +750,7 @@ void QDnsAnswer::parse()
}
if ( answers == 0 ) {
#if defined(QDNS_DEBUG)
qDebug( "DNS Manager: answer contained no answers" );
tqDebug( "DNS Manager: answer contained no answers" );
#endif
ok = ( aa && rd );
}
@ -790,7 +790,7 @@ void QDnsAnswer::parse()
// well, it's equal, but it's not the same. so we kill it,
// but use its expiry time.
#if defined(QDNS_DEBUG)
qDebug( "killing off old %d for %s, expire was %d",
tqDebug( "killing off old %d for %s, expire was %d",
older->t, older->domain->name().latin1(),
rr->expireTime );
#endif
@ -799,7 +799,7 @@ void QDnsAnswer::parse()
rr->deleteTime = QMAX( older->deleteTime, rr->deleteTime );
older->deleteTime = 0;
#if defined(QDNS_DEBUG)
qDebug( " adjusted expire is %d", rr->expireTime );
tqDebug( " adjusted expire is %d", rr->expireTime );
#endif
}
drrs->next();
@ -808,7 +808,7 @@ void QDnsAnswer::parse()
}
#if defined(QDNS_DEBUG)
//qDebug( "DNS Manager: ()" );
//tqDebug( "DNS Manager: ()" );
#endif
}
@ -836,7 +836,7 @@ void QDnsAnswer::notify()
notified.insert( (void*)dns, (void*)42 );
if ( rrs->count() == 0 ) {
#if defined(QDNS_DEBUG)
qDebug( "DNS Manager: found no answers!" );
tqDebug( "DNS Manager: found no answers!" );
#endif
dns->d->noNames = TRUE;
((QDnsUgleHack*)dns)->ugle( TRUE );
@ -846,7 +846,7 @@ void QDnsAnswer::notify()
((QDnsUgleHack*)dns)->ugle();
#if defined(QDNS_DEBUG)
else
qDebug( "DNS Manager: DNS thing %s not notified for %s",
tqDebug( "DNS Manager: DNS thing %s not notified for %s",
dns->label().ascii(), query->l.ascii() );
#endif
}
@ -902,7 +902,7 @@ static void cleanupDns()
QDnsManager * QDnsManager::manager()
{
if ( !globalManager ) {
qAddPostRoutine(cleanupDns);
tqAddPostRoutine(cleanupDns);
new QDnsManager();
}
return globalManager;
@ -913,7 +913,7 @@ void QDnsUgleHack::ugle( bool emitAnyway)
{
if ( emitAnyway || !isWorking() ) {
#if defined(QDNS_DEBUG)
qDebug( "DNS Manager: status change for %s (type %d)",
tqDebug( "DNS Manager: status change for %s (type %d)",
label().ascii(), recordType() );
#endif
emit resultsReady();
@ -977,9 +977,9 @@ QDnsManager::QDnsManager()
if ( !ns->current() ) {
ns->append( new QHostAddress(*h) );
#if defined(QDNS_DEBUG)
qDebug( "using name server %s", h->toString().latin1() );
tqDebug( "using name server %s", h->toString().latin1() );
} else {
qDebug( "skipping address %s", h->toString().latin1() );
tqDebug( "skipping address %s", h->toString().latin1() );
#endif
}
::ns->next();
@ -1000,9 +1000,9 @@ QDnsManager::QDnsManager()
if ( !domains->current() ) {
domains->append( s );
#if defined(QDNS_DEBUG)
qDebug( "searching domain %s", s );
tqDebug( "searching domain %s", s );
} else {
qDebug( "skipping domain %s", s );
tqDebug( "skipping domain %s", s );
#endif
}
::domains->next();
@ -1035,7 +1035,7 @@ void QDnsManager::cleanCache()
QDnsDomain * d;
Q_UINT32 thisSweep = now();
#if defined(QDNS_DEBUG)
qDebug( "QDnsManager::cleanCache(: Called, time is %u, last was %u",
tqDebug( "QDnsManager::cleanCache(: Called, time is %u, last was %u",
thisSweep, lastSweep );
#endif
@ -1079,12 +1079,12 @@ void QDnsManager::answer()
#endif
#if defined(QDNS_DEBUG)
#if !defined (QT_NO_IPV6)
qDebug("DNS Manager: answer arrived: %d bytes from %s:%d", r,
tqDebug("DNS Manager: answer arrived: %d bytes from %s:%d", r,
useIpv4Socket ? ipv4Socket->peerAddress().toString().ascii()
: ipv6Socket->peerAddress().toString().ascii(),
useIpv4Socket ? ipv4Socket->peerPort() : ipv6Socket->peerPort() );
#else
qDebug("DNS Manager: answer arrived: %d bytes from %s:%d", r,
tqDebug("DNS Manager: answer arrived: %d bytes from %s:%d", r,
ipv4Socket->peerAddress().toString().ascii(), ipv4Socket->peerPort());;
#endif
#endif
@ -1101,7 +1101,7 @@ void QDnsManager::answer()
i++;
if ( i == queries.size() ) {
#if defined(QDNS_DEBUG)
qDebug( "DNS Manager: bad id (0x%04x) %d", aid, i );
tqDebug( "DNS Manager: bad id (0x%04x) %d", aid, i );
#endif
return;
}
@ -1110,7 +1110,7 @@ void QDnsManager::answer()
if ( ( (Q_UINT8)(a[2]) & 0x80 ) == 0 ) {
#if defined(QDNS_DEBUG)
qDebug( "DNS Manager: received a query" );
tqDebug( "DNS Manager: received a query" );
#endif
return;
}
@ -1159,7 +1159,7 @@ void QDnsManager::transmitQuery( int i )
// and then get rid of the query
queries.take( i );
#if defined(QDNS_DEBUG)
qDebug( "DNS Manager: giving up on query 0x%04x", q->id );
tqDebug( "DNS Manager: giving up on query 0x%04x", q->id );
#endif
delete q;
QTimer::singleShot( 0, QDnsManager::manager(), SLOT(cleanCache()) );
@ -1255,7 +1255,7 @@ void QDnsManager::transmitQuery( int i )
// and then get rid of the query
queries.take( i );
#if defined(QDNS_DEBUG)
qDebug( "DNS Manager: no DNS server found on query 0x%04x", q->id );
tqDebug( "DNS Manager: no DNS server found on query 0x%04x", q->id );
#endif
delete q;
QTimer::singleShot( 1000*10, QDnsManager::manager(), SLOT(cleanCache()) );
@ -1271,7 +1271,7 @@ void QDnsManager::transmitQuery( int i )
ipv6Socket->writeBlock( p.data(), pp, receiver, 53 );
#endif
#if defined(QDNS_DEBUG)
qDebug( "issuing query 0x%04x (%d) about %s type %d to %s",
tqDebug( "issuing query 0x%04x (%d) about %s type %d to %s",
q->id, q->step, q->l.ascii(), q->t,
ns->at( q->step % ns->count() )->toString().ascii() );
#endif
@ -1289,7 +1289,7 @@ void QDnsManager::transmitQuery( int i )
ipv6Socket->writeBlock( p.data(), pp, *server, 53 );
#endif
#if defined(QDNS_DEBUG)
qDebug( "copying query to %s", server->toString().ascii() );
tqDebug( "copying query to %s", server->toString().ascii() );
#endif
}
}
@ -1408,12 +1408,12 @@ QPtrList<QDnsRR> * QDnsDomain::cached( const QDns * r )
QString s = *it++;
nxdomain = FALSE;
#if defined(QDNS_DEBUG)
qDebug( "looking at cache for %s (%s %d)",
tqDebug( "looking at cache for %s (%s %d)",
s.ascii(), r->label().ascii(), r->recordType() );
#endif
QDnsDomain * d = m->domain( s );
#if defined(QDNS_DEBUG)
qDebug( " - found %d RRs", d && d->rrs ? d->rrs->count() : 0 );
tqDebug( " - found %d RRs", d && d->rrs ? d->rrs->count() : 0 );
#endif
if ( d->rrs )
d->rrs->first();
@ -1425,7 +1425,7 @@ QPtrList<QDnsRR> * QDnsDomain::cached( const QDns * r )
// cname. if the code is ugly, that may just
// possibly be because the concept is.
#if defined(QDNS_DEBUG)
qDebug( "found cname from %s to %s",
tqDebug( "found cname from %s to %s",
r->label().ascii(), rr->target.ascii() );
#endif
s = rr->target;
@ -1472,11 +1472,11 @@ QPtrList<QDnsRR> * QDnsDomain::cached( const QDns * r )
// if we found a positive result, return quickly
if ( answer && l->count() ) {
#if defined(QDNS_DEBUG)
qDebug( "found %d records for %s",
tqDebug( "found %d records for %s",
l->count(), r->label().ascii() );
l->first();
while( l->current() ) {
qDebug( " type %d target %s address %s",
tqDebug( " type %d target %s address %s",
l->current()->t,
l->current()->target.latin1(),
l->current()->address.toString().latin1() );
@ -1489,7 +1489,7 @@ QPtrList<QDnsRR> * QDnsDomain::cached( const QDns * r )
#if defined(QDNS_DEBUG)
if ( nxdomain )
qDebug( "found NXDomain %s", s.ascii() );
tqDebug( "found NXDomain %s", s.ascii() );
#endif
if ( !nxdomain ) {
@ -1539,7 +1539,7 @@ void QDnsDomain::sweep( Q_UINT32 thisSweep )
rr->deleteTime = thisSweep; // will hit next time around
#if defined(QDNS_DEBUG)
qDebug( "QDns::sweep: %s type %d expires %u %u - %s / %s",
tqDebug( "QDns::sweep: %s type %d expires %u %u - %s / %s",
rr->domain->name().latin1(), rr->t,
rr->expireTime, rr->deleteTime,
rr->target.latin1(), rr->address.toString().latin1());
@ -1775,10 +1775,10 @@ void QDns::setLabel( const QString & label )
setStartQueryTimer(); // start query the next time we enter event loop
#endif
#if defined(QDNS_DEBUG)
qDebug( "QDns::setLabel: %d address(es) for %s", n.count(), l.ascii() );
tqDebug( "QDns::setLabel: %d address(es) for %s", n.count(), l.ascii() );
int i = 0;
for( i = 0; i < (int)n.count(); i++ )
qDebug( "QDns::setLabel: %d: %s", i, n[i].ascii() );
tqDebug( "QDns::setLabel: %d: %s", i, n[i].ascii() );
#endif
}
@ -1965,7 +1965,7 @@ QString QDns::toInAddrArpaDomain( const QHostAddress &address )
bool QDns::isWorking() const
{
#if defined(QDNS_DEBUG)
qDebug( "QDns::isWorking (%s, %d)", l.ascii(), t );
tqDebug( "QDns::isWorking (%s, %d)", l.ascii(), t );
#endif
if ( t == None )
return FALSE;
@ -2020,7 +2020,7 @@ bool QDns::isWorking() const
QValueList<QHostAddress> QDns::addresses() const
{
#if defined(QDNS_DEBUG)
qDebug( "QDns::addresses (%s)", l.ascii() );
tqDebug( "QDns::addresses (%s)", l.ascii() );
#endif
QValueList<QHostAddress> result;
if ( t != A && t != Aaaa )
@ -2074,7 +2074,7 @@ QValueList<QHostAddress> QDns::addresses() const
QValueList<QDns::MailServer> QDns::mailServers() const
{
#if defined(QDNS_DEBUG)
qDebug( "QDns::mailServers (%s)", l.ascii() );
tqDebug( "QDns::mailServers (%s)", l.ascii() );
#endif
QValueList<QDns::MailServer> result;
if ( t != Mx )
@ -2131,7 +2131,7 @@ QValueList<QDns::MailServer> QDns::mailServers() const
QValueList<QDns::Server> QDns::servers() const
{
#if defined(QDNS_DEBUG)
qDebug( "QDns::servers (%s)", l.ascii() );
tqDebug( "QDns::servers (%s)", l.ascii() );
#endif
QValueList<QDns::Server> result;
if ( t != Srv )
@ -2170,7 +2170,7 @@ QValueList<QDns::Server> QDns::servers() const
QStringList QDns::hostNames() const
{
#if defined(QDNS_DEBUG)
qDebug( "QDns::hostNames (%s)", l.ascii() );
tqDebug( "QDns::hostNames (%s)", l.ascii() );
#endif
QStringList result;
if ( t != Ptr )
@ -2208,7 +2208,7 @@ QStringList QDns::hostNames() const
QStringList QDns::texts() const
{
#if defined(QDNS_DEBUG)
qDebug( "QDns::texts (%s)", l.ascii() );
tqDebug( "QDns::texts (%s)", l.ascii() );
#endif
QStringList result;
if ( t != Txt )
@ -2475,7 +2475,7 @@ void QDns::doResInit()
last = searchList.find( separator, first );
if ( last < 0 )
last = searchList.length();
domains->append( qstrdup( searchList.mid( first, last-first ) ) );
domains->append( tqstrdup( searchList.mid( first, last-first ) ) );
first = last+1;
} while( first < (int)searchList.length() );
}

@ -325,7 +325,7 @@ void QFtpDTP::writeData()
{
if ( is_ba ) {
#if defined(QFTPDTP_DEBUG)
qDebug( "QFtpDTP::writeData: write %d bytes", data.ba->size() );
tqDebug( "QFtpDTP::writeData: write %d bytes", data.ba->size() );
#endif
if ( data.ba->size() == 0 )
emit dataTransferProgress( 0, bytesTotal );
@ -340,7 +340,7 @@ void QFtpDTP::writeData()
while ( !data.dev->atEnd() && socket.bytesToWrite()==0 ) {
Q_LONG read = data.dev->readBlock( buf, blockSize );
#if defined(QFTPDTP_DEBUG)
qDebug( "QFtpDTP::writeData: writeBlock() of size %d bytes", (int)read );
tqDebug( "QFtpDTP::writeData: writeBlock() of size %d bytes", (int)read );
#endif
socket.writeBlock( buf, read );
if ( !data.dev )
@ -375,7 +375,7 @@ inline void QFtpDTP::clearError()
void QFtpDTP::abortConnection()
{
#if defined(QFTPDTP_DEBUG)
qDebug( "QFtpDTP::abortConnection" );
tqDebug( "QFtpDTP::abortConnection" );
#endif
callWriteData = FALSE;
clearData();
@ -526,7 +526,7 @@ void QFtpDTP::socketConnected()
bytesDone = 0;
#if defined(QFTPDTP_DEBUG)
qDebug( "QFtpDTP::connectState( CsConnected )" );
tqDebug( "QFtpDTP::connectState( CsConnected )" );
#endif
emit connectState( QFtpDTP::CsConnected );
}
@ -536,7 +536,7 @@ void QFtpDTP::socketReadyRead()
if ( pi->currentCommand().isEmpty() ) {
socket.close();
#if defined(QFTPDTP_DEBUG)
qDebug( "QFtpDTP::connectState( CsClosed )" );
tqDebug( "QFtpDTP::connectState( CsClosed )" );
#endif
emit connectState( QFtpDTP::CsClosed );
return;
@ -547,7 +547,7 @@ void QFtpDTP::socketReadyRead()
QUrlInfo i;
QString line = socket.readLine();
#if defined(QFTPDTP_DEBUG)
qDebug( "QFtpDTP read (list): '%s'", line.latin1() );
tqDebug( "QFtpDTP read (list): '%s'", line.latin1() );
#endif
if ( parseDir( line, "", &i ) ) {
emit listInfo( i );
@ -570,14 +570,14 @@ void QFtpDTP::socketReadyRead()
ba.resize( bytesRead );
bytesDone += bytesRead;
#if defined(QFTPDTP_DEBUG)
qDebug( "QFtpDTP read: %d bytes (total %d bytes)", (int)bytesRead, bytesDone );
tqDebug( "QFtpDTP read: %d bytes (total %d bytes)", (int)bytesRead, bytesDone );
#endif
emit dataTransferProgress( bytesDone, bytesTotal );
if (data.dev) // make sure it wasn't deleted in the slot
data.dev->writeBlock( ba );
} else {
#if defined(QFTPDTP_DEBUG)
qDebug( "QFtpDTP readyRead: %d bytes available (total %d bytes read)", (int)bytesAvailable(), bytesDone );
tqDebug( "QFtpDTP readyRead: %d bytes available (total %d bytes read)", (int)bytesAvailable(), bytesDone );
#endif
emit dataTransferProgress( bytesDone+socket.bytesAvailable(), bytesTotal );
emit readyRead();
@ -589,12 +589,12 @@ void QFtpDTP::socketError( int e )
{
if ( e == QSocket::ErrHostNotFound ) {
#if defined(QFTPDTP_DEBUG)
qDebug( "QFtpDTP::connectState( CsHostNotFound )" );
tqDebug( "QFtpDTP::connectState( CsHostNotFound )" );
#endif
emit connectState( QFtpDTP::CsHostNotFound );
} else if ( e == QSocket::ErrConnectionRefused ) {
#if defined(QFTPDTP_DEBUG)
qDebug( "QFtpDTP::connectState( CsConnectionRefused )" );
tqDebug( "QFtpDTP::connectState( CsConnectionRefused )" );
#endif
emit connectState( QFtpDTP::CsConnectionRefused );
}
@ -606,7 +606,7 @@ void QFtpDTP::socketConnectionClosed()
clearData();
}
#if defined(QFTPDTP_DEBUG)
qDebug( "QFtpDTP::connectState( CsClosed )" );
tqDebug( "QFtpDTP::connectState( CsClosed )" );
#endif
emit connectState( QFtpDTP::CsClosed );
}
@ -615,7 +615,7 @@ void QFtpDTP::socketBytesWritten( int bytes )
{
bytesDone += bytes;
#if defined(QFTPDTP_DEBUG)
qDebug( "QFtpDTP::bytesWritten( %d )", bytesDone );
tqDebug( "QFtpDTP::bytesWritten( %d )", bytesDone );
#endif
emit dataTransferProgress( bytesDone, bytesTotal );
if ( callWriteData )
@ -701,7 +701,7 @@ void QFtpPI::abort()
abortState = AbortStarted;
#if defined(QFTPPI_DEBUG)
qDebug( "QFtpPI send: ABOR" );
tqDebug( "QFtpPI send: ABOR" );
#endif
commandSocket.writeBlock( "ABOR\r\n", 6 );
@ -718,7 +718,7 @@ void QFtpPI::connected()
{
state = Begin;
#if defined(QFTPPI_DEBUG)
// qDebug( "QFtpPI state: %d [connected()]", state );
// tqDebug( "QFtpPI state: %d [connected()]", state );
#endif
emit connectState( QFtp::Connected );
}
@ -807,11 +807,11 @@ void QFtpPI::readyRead()
bool QFtpPI::processReply()
{
#if defined(QFTPPI_DEBUG)
// qDebug( "QFtpPI state: %d [processReply() begin]", state );
// tqDebug( "QFtpPI state: %d [processReply() begin]", state );
if ( replyText.length() < 400 )
qDebug( "QFtpPI recv: %d %s", 100*replyCode[0]+10*replyCode[1]+replyCode[2], replyText.latin1() );
tqDebug( "QFtpPI recv: %d %s", 100*replyCode[0]+10*replyCode[1]+replyCode[2], replyText.latin1() );
else
qDebug( "QFtpPI recv: %d (text skipped)", 100*replyCode[0]+10*replyCode[1]+replyCode[2] );
tqDebug( "QFtpPI recv: %d (text skipped)", 100*replyCode[0]+10*replyCode[1]+replyCode[2] );
#endif
// process 226 replies ("Closing Data Connection") only when the data
@ -861,7 +861,7 @@ bool QFtpPI::processReply()
return TRUE;
}
#if defined(QFTPPI_DEBUG)
// qDebug( "QFtpPI state: %d [processReply() intermediate]", state );
// tqDebug( "QFtpPI state: %d [processReply() intermediate]", state );
#endif
// special actions on certain replies
@ -878,7 +878,7 @@ bool QFtpPI::processReply()
QRegExp addrPortPattern("(\\d+),(\\d+),(\\d+),(\\d+),(\\d+),(\\d+)");
if (addrPortPattern.search(replyText) == -1) {
#if defined(QFTPPI_DEBUG)
qDebug( "QFtp: bad 227 response -- address and port information missing" );
tqDebug( "QFtp: bad 227 response -- address and port information missing" );
#endif
// ### error handling
} else {
@ -930,7 +930,7 @@ bool QFtpPI::processReply()
break;
}
#if defined(QFTPPI_DEBUG)
// qDebug( "QFtpPI state: %d [processReply() end]", state );
// tqDebug( "QFtpPI state: %d [processReply() end]", state );
#endif
return TRUE;
}
@ -951,7 +951,7 @@ bool QFtpPI::startNextCmd()
#if defined(QFTPPI_DEBUG)
if ( state != Idle )
qDebug( "QFtpPI startNextCmd: Internal error! QFtpPI called in non-Idle state %d", state );
tqDebug( "QFtpPI startNextCmd: Internal error! QFtpPI called in non-Idle state %d", state );
#endif
if ( pendingCommands.isEmpty() ) {
currentCmd = QString::null;
@ -961,7 +961,7 @@ bool QFtpPI::startNextCmd()
currentCmd = pendingCommands.first();
pendingCommands.pop_front();
#if defined(QFTPPI_DEBUG)
qDebug( "QFtpPI send: %s", currentCmd.left( currentCmd.length()-2 ).latin1() );
tqDebug( "QFtpPI send: %s", currentCmd.left( currentCmd.length()-2 ).latin1() );
#endif
state = Waiting;
#ifndef QT_NO_TEXTCODEC
@ -1042,7 +1042,7 @@ static QFtpPrivate* d( const QFtp* foo )
if ( !d_ptr ) {
d_ptr = new QPtrDict<QFtpPrivate>;
d_ptr->setAutoDelete( TRUE );
qAddPostRoutine( cleanup_d_ptr );
tqAddPostRoutine( cleanup_d_ptr );
}
QFtpPrivate* ret = d_ptr->find( (void*)foo );
if ( ! ret ) {
@ -1093,7 +1093,7 @@ static void delete_d( const QFtp* foo )
\endcode
This code will only work if the QFtp class is registered; to
register the class, you must call qInitNetworkProtocols() before
register the class, you must call tqInitNetworkProtocols() before
using a QUrlOperator with QFtp.
The rest of this descrption describes the direct interface to FTP.

@ -1039,7 +1039,7 @@ QString QHttpRequestHeader::toString() const
\endcode
This code will only work if the QHttp class is registered; to
register the class, you must call qInitNetworkProtocols() before
register the class, you must call tqInitNetworkProtocols() before
using a QUrlOperator with HTTP.
The QNetworkProtocol interface for HTTP only supports the
@ -1435,7 +1435,7 @@ void QHttp::abort()
Q_ULONG QHttp::bytesAvailable() const
{
#if defined(QHTTP_DEBUG)
qDebug( "QHttp::bytesAvailable(): %d bytes", (int)d->rba.size() );
tqDebug( "QHttp::bytesAvailable(): %d bytes", (int)d->rba.size() );
#endif
return d->rba.size();
}
@ -1450,7 +1450,7 @@ Q_LONG QHttp::readBlock( char *data, Q_ULONG maxlen )
{
if ( data == 0 && maxlen != 0 ) {
#if defined(QT_CHECK_NULL)
qWarning( "QHttp::readBlock: Null pointer error" );
tqWarning( "QHttp::readBlock: Null pointer error" );
#endif
return -1;
}
@ -1460,7 +1460,7 @@ Q_LONG QHttp::readBlock( char *data, Q_ULONG maxlen )
d->bytesDone += maxlen;
#if defined(QHTTP_DEBUG)
qDebug( "QHttp::readBlock(): read %d bytes (%d bytes done)", (int)maxlen, d->bytesDone );
tqDebug( "QHttp::readBlock(): read %d bytes (%d bytes done)", (int)maxlen, d->bytesDone );
#endif
return maxlen;
}
@ -1880,7 +1880,7 @@ void QHttp::slotConnected()
d->bytesTotal = str.length();
d->socket.writeBlock( str.latin1(), d->bytesTotal );
#if defined(QHTTP_DEBUG)
qDebug( "QHttp: write request header:\n---{\n%s}---", str.latin1() );
tqDebug( "QHttp: write request header:\n---{\n%s}---", str.latin1() );
#endif
if ( d->postDevice ) {
@ -1927,7 +1927,7 @@ void QHttp::slotBytesWritten( int written )
int n = d->postDevice->readBlock( arr.data(), max );
if ( n != max ) {
qWarning("Could not read enough bytes from the device");
tqWarning("Could not read enough bytes from the device");
close();
return;
}
@ -1965,12 +1965,12 @@ void QHttp::slotReadyRead()
return;
#if defined(QHTTP_DEBUG)
qDebug( "QHttp: read response header:\n---{\n%s}---", d->headerStr.latin1() );
tqDebug( "QHttp: read response header:\n---{\n%s}---", d->headerStr.latin1() );
#endif
d->response = QHttpResponseHeader( d->headerStr );
d->headerStr = "";
#if defined(QHTTP_DEBUG)
qDebug( "QHttp: read response header:\n---{\n%s}---", d->response.toString().latin1() );
tqDebug( "QHttp: read response header:\n---{\n%s}---", d->response.toString().latin1() );
#endif
// Check header
if ( !d->response.isValid() ) {
@ -2089,7 +2089,7 @@ void QHttp::slotReadyRead()
delete arr;
d->bytesDone += n;
#if defined(QHTTP_DEBUG)
qDebug( "QHttp::slotReadyRead(): read %ld bytes (%d bytes done)", n, d->bytesDone );
tqDebug( "QHttp::slotReadyRead(): read %ld bytes (%d bytes done)", n, d->bytesDone );
#endif
if ( d->response.hasContentLength() )
emit dataReadProgress( d->bytesDone, d->response.contentLength() );
@ -2098,7 +2098,7 @@ void QHttp::slotReadyRead()
} else {
d->rba.append( arr );
#if defined(QHTTP_DEBUG)
qDebug( "QHttp::slotReadyRead(): read %ld bytes (%ld bytes done)", n, d->bytesDone + bytesAvailable() );
tqDebug( "QHttp::slotReadyRead(): read %ld bytes (%ld bytes done)", n, d->bytesDone + bytesAvailable() );
#endif
if ( d->response.hasContentLength() )
emit dataReadProgress( d->bytesDone + bytesAvailable(), d->response.contentLength() );
@ -2185,7 +2185,7 @@ void QHttp::killIdleTimer()
void QHttp::setState( int s )
{
#if defined(QHTTP_DEBUG)
qDebug( "QHttp state changed %d -> %d", d->state, s );
tqDebug( "QHttp state changed %d -> %d", d->state, s );
#endif
d->state = (State)s;
emit stateChanged( s );

@ -1,6 +1,6 @@
/****************************************************************************
**
** Implementation of qInitNetworkProtocols function.
** Implementation of tqInitNetworkProtocols function.
**
** Created : 970521
**
@ -58,7 +58,7 @@
This function is declared in \l qnetwork.h.
*/
void qInitNetworkProtocols()
void tqInitNetworkProtocols()
{
#ifndef QT_NO_NETWORKPROTOCOL_FTP
QNetworkProtocol::registerNetworkProtocol( "ftp", new QNetworkProtocolFactory< QFtp > );

@ -1,6 +1,6 @@
/****************************************************************************
**
** Definition of qInitNetworkProtocols function.
** Definition of tqInitNetworkProtocols function.
**
** Created : 970521
**
@ -53,7 +53,7 @@
#ifndef QT_NO_NETWORK
QM_EXPORT_NETWORK void qInitNetworkProtocols();
QM_EXPORT_NETWORK void tqInitNetworkProtocols();
#endif

@ -176,7 +176,7 @@ void QServerSocket::init( const QHostAddress & address, Q_UINT16 port, int backl
connect( d->n, SIGNAL(activated(int)),
this, SLOT(incomingConnection(int)) );
} else {
qWarning( "QServerSocket: failed to bind or listen to the socket" );
tqWarning( "QServerSocket: failed to bind or listen to the socket" );
delete d->s;
d->s = 0;
}

@ -321,7 +321,7 @@ QSocket::QSocket( QObject *parent, const char *name )
QSocket::~QSocket()
{
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s): Destroy", name() );
tqDebug( "QSocket (%s): Destroy", name() );
#endif
if ( state() != Idle )
close();
@ -411,7 +411,7 @@ QSocket::State QSocket::state() const
void QSocket::connectToHost( const QString &host, Q_UINT16 port )
{
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s)::connectToHost: host %s, port %d",
tqDebug( "QSocket (%s)::connectToHost: host %s, port %d",
name(), host.ascii(), port );
#endif
setSocketIntern( -1 );
@ -442,7 +442,7 @@ void QSocket::connectToHost( const QString &host, Q_UINT16 port )
void QSocket::tryConnecting()
{
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s)::tryConnecting()", name() );
tqDebug( "QSocket (%s)::tryConnecting()", name() );
#endif
// ### this ifdef isn't correct - addresses() also does /etc/hosts and
// numeric-address-as-string handling.
@ -452,7 +452,7 @@ void QSocket::tryConnecting()
d->l4 = d->dns4->addresses();
if ( !d->l4.isEmpty() || !d->dns4->isWorking() ) {
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s)::tryConnecting: host %s, port %d: "
tqDebug( "QSocket (%s)::tryConnecting: host %s, port %d: "
"%d IPv4 addresses",
name(), d->host.ascii(), d->port, d->l4.count() );
#endif
@ -465,7 +465,7 @@ void QSocket::tryConnecting()
d->l6 = d->dns6->addresses();
if ( !d->l6.isEmpty() || !d->dns6->isWorking() ) {
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s)::tryConnecting: host %s, port %d: "
tqDebug( "QSocket (%s)::tryConnecting: host %s, port %d: "
"%d IPv6 addresses",
name(), d->host.ascii(), d->port, d->l6.count() );
#endif
@ -516,7 +516,7 @@ void QSocket::tryConnecting()
}
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s)::tryConnecting: "
tqDebug( "QSocket (%s)::tryConnecting: "
"Gave up on IP address %s",
name(), d->socket->peerAddress().toString().ascii() );
#endif
@ -539,7 +539,7 @@ void QSocket::tryConnecting()
d->setSocketDevice( this, 0 );
stuck = TRUE;
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s)::tryConnecting: Trying IP address %s",
tqDebug( "QSocket (%s)::tryConnecting: Trying IP address %s",
name(), d->addr.toString().ascii() );
#endif
}
@ -654,7 +654,7 @@ bool QSocket::open( int m )
{
if ( isOpen() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSocket::open: Already open" );
tqWarning( "QSocket::open: Already open" );
#endif
return FALSE;
}
@ -692,7 +692,7 @@ void QSocket::close()
if ( !d->rsn || !d->wsn )
return;
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s): close socket", name() );
tqDebug( "QSocket (%s): close socket", name() );
#endif
if ( d->socket && d->wsize ) { // there's data to be written
d->state = Closing;
@ -721,7 +721,7 @@ bool QSocket::consumeWriteBuf( Q_ULONG nbytes )
if ( nbytes <= 0 || nbytes > d->wsize )
return FALSE;
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s): skipWriteBuf %d bytes", name(), (int)nbytes );
tqDebug( "QSocket (%s): skipWriteBuf %d bytes", name(), (int)nbytes );
#endif
d->wsize -= nbytes;
for ( ;; ) {
@ -754,7 +754,7 @@ void QSocket::flush()
int consumed = 0;
while ( !osBufferFull && d->state >= Connecting && d->wsize > 0 ) {
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s): flush: Write data to the socket", name() );
tqDebug( "QSocket (%s): flush: Write data to the socket", name() );
#endif
QByteArray *a = d->wba.first();
int nwritten;
@ -798,14 +798,14 @@ void QSocket::flush()
}
if ( consumed > 0 ) {
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s): flush: wrote %d bytes, %d left",
tqDebug( "QSocket (%s): flush: wrote %d bytes, %d left",
name(), consumed, (int)d->wsize );
#endif
emit bytesWritten( consumed );
}
if ( d->state == Closing && d->wsize == 0 ) {
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s): flush: Delayed close done. Terminating.",
tqDebug( "QSocket (%s): flush: Delayed close done. Terminating.",
name() );
#endif
setFlags( IO_Sequential );
@ -981,20 +981,20 @@ Q_LONG QSocket::readBlock( char *data, Q_ULONG maxlen )
{
if ( data == 0 && maxlen != 0 ) {
#if defined(QT_CHECK_NULL)
qWarning( "QSocket::readBlock: Null pointer error" );
tqWarning( "QSocket::readBlock: Null pointer error" );
#endif
return -1;
}
if ( !isOpen() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSocket::readBlock: Socket is not open" );
tqWarning( "QSocket::readBlock: Socket is not open" );
#endif
return -1;
}
if ( maxlen >= d->rba.size() )
maxlen = d->rba.size();
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s): readBlock %d bytes", name(), (int)maxlen );
tqDebug( "QSocket (%s): readBlock %d bytes", name(), (int)maxlen );
#endif
d->rba.consumeBytes( maxlen, data );
// After we read data from our internal buffer, if we use the
@ -1019,18 +1019,18 @@ Q_LONG QSocket::writeBlock( const char *data, Q_ULONG len )
{
#if defined(QT_CHECK_NULL)
if ( data == 0 && len != 0 ) {
qWarning( "QSocket::writeBlock: Null pointer error" );
tqWarning( "QSocket::writeBlock: Null pointer error" );
}
#endif
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) {
qWarning( "QSocket::writeBlock: Socket is not open" );
tqWarning( "QSocket::writeBlock: Socket is not open" );
return -1;
}
#endif
#if defined(QT_CHECK_STATE)
if ( d->state == Closing ) {
qWarning( "QSocket::writeBlock: Cannot write, socket is closing" );
tqWarning( "QSocket::writeBlock: Cannot write, socket is closing" );
}
#endif
if ( len == 0 || d->state == Closing || d->state == Idle )
@ -1061,7 +1061,7 @@ Q_LONG QSocket::writeBlock( const char *data, Q_ULONG len )
else if ( d->wsn )
d->wsn->setEnabled( TRUE );
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s): writeBlock %d bytes", name(), (int)len );
tqDebug( "QSocket (%s): writeBlock %d bytes", name(), (int)len );
#endif
return len;
}
@ -1121,7 +1121,7 @@ int QSocket::ungetch( int ch )
{
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) {
qWarning( "QSocket::ungetch: Socket not open" );
tqWarning( "QSocket::ungetch: Socket not open" );
return -1;
}
#endif
@ -1243,7 +1243,7 @@ void QSocket::sn_read( bool force )
if ( nread == 0 ) { // really closed
if ( !d->socket->isOpen() ) {
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s): sn_read: Connection closed", name() );
tqDebug( "QSocket (%s): sn_read: Connection closed", name() );
#endif
d->connectionClosed();
emit connectionClosed();
@ -1258,7 +1258,7 @@ void QSocket::sn_read( bool force )
return;
}
#if defined(QSOCKET_DEBUG)
qWarning( "QSocket::sn_read (%s): Close error", name() );
tqWarning( "QSocket::sn_read (%s): Close error", name() );
#endif
if ( d->rsn )
d->rsn->setEnabled( FALSE );
@ -1272,7 +1272,7 @@ void QSocket::sn_read( bool force )
} else { // data to be read
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s): sn_read: %ld incoming bytes", name(), nbytes );
tqDebug( "QSocket (%s): sn_read: %ld incoming bytes", name(), nbytes );
#endif
if ( nbytes > (int)sizeof(buf) ) {
// big
@ -1289,7 +1289,7 @@ void QSocket::sn_read( bool force )
}
if ( nread == 0 ) {
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s): sn_read: Connection closed", name() );
tqDebug( "QSocket (%s): sn_read: Connection closed", name() );
#endif
// ### we should rather ask the socket device if it is closed
d->connectionClosed();
@ -1306,7 +1306,7 @@ void QSocket::sn_read( bool force )
return;
}
#if defined(QT_CHECK_RANGE)
qWarning( "QSocket::sn_read: Read error" );
tqWarning( "QSocket::sn_read: Read error" );
#endif
if ( d->rsn )
d->rsn->setEnabled( FALSE );
@ -1316,7 +1316,7 @@ void QSocket::sn_read( bool force )
}
if ( nread != (int)a->size() ) { // unexpected
#if defined(CHECK_RANGE) && !defined(Q_OS_WIN32)
qWarning( "QSocket::sn_read: Unexpected short read" );
tqWarning( "QSocket::sn_read: Unexpected short read" );
#endif
a->resize( nread );
}
@ -1356,7 +1356,7 @@ void QSocket::tryConnection()
if ( d->socket->connect( d->addr, d->port ) ) {
d->state = Connected;
#if defined(QSOCKET_DEBUG)
qDebug( "QSocket (%s): sn_write: Got connection to %s",
tqDebug( "QSocket (%s): sn_write: Got connection to %s",
name(), peerName().ascii() );
#endif
if ( d->rsn )

@ -163,7 +163,7 @@ QSocketDevice::QSocketDevice( int socket, Type type )
d(new QSocketDevicePrivate(Unknown))
{
#if defined(QSOCKETDEVICE_DEBUG)
qDebug( "QSocketDevice: Created QSocketDevice %p (socket %x, type %d)",
tqDebug( "QSocketDevice: Created QSocketDevice %p (socket %x, type %d)",
this, socket, type );
#endif
init();
@ -186,7 +186,7 @@ QSocketDevice::QSocketDevice( Type type )
d(new QSocketDevicePrivate(IPv4))
{
#if defined(QSOCKETDEVICE_DEBUG)
qDebug( "QSocketDevice: Created QSocketDevice object %p, type %d",
tqDebug( "QSocketDevice: Created QSocketDevice object %p, type %d",
this, type );
#endif
init();
@ -215,7 +215,7 @@ QSocketDevice::QSocketDevice( Type type, Protocol protocol, int )
d(new QSocketDevicePrivate(protocol))
{
#if defined(QSOCKETDEVICE_DEBUG)
qDebug( "QSocketDevice: Created QSocketDevice object %p, type %d",
tqDebug( "QSocketDevice: Created QSocketDevice object %p, type %d",
this, type );
#endif
init();
@ -231,7 +231,7 @@ QSocketDevice::~QSocketDevice()
delete d;
d = 0;
#if defined(QSOCKETDEVICE_DEBUG)
qDebug( "QSocketDevice: Destroyed QSocketDevice %p", this );
tqDebug( "QSocketDevice: Destroyed QSocketDevice %p", this );
#endif
}
@ -308,7 +308,7 @@ void QSocketDevice::setSocket( int socket, Type type )
if ( fd != -1 ) // close any open socket
close();
#if defined(QSOCKETDEVICE_DEBUG)
qDebug( "QSocketDevice::setSocket: socket %x, type %d", socket, type );
tqDebug( "QSocketDevice::setSocket: socket %x, type %d", socket, type );
#endif
t = type;
fd = socket;
@ -335,7 +335,7 @@ bool QSocketDevice::open( int mode )
if ( isOpen() || !isValid() )
return FALSE;
#if defined(QSOCKETDEVICE_DEBUG)
qDebug( "QSocketDevice::open: mode %x", mode );
tqDebug( "QSocketDevice::open: mode %x", mode );
#endif
setMode( mode & IO_ReadWrite );
setState( IO_Open );

@ -224,7 +224,7 @@ void QSocketDevice::close()
setState( 0 );
::close( fd );
#if defined(QSOCKETDEVICE_DEBUG)
qDebug( "QSocketDevice::close: Closed socket %x", fd );
tqDebug( "QSocketDevice::close: Closed socket %x", fd );
#endif
fd = -1;
fetchConnectionParameters();
@ -268,7 +268,7 @@ bool QSocketDevice::blocking() const
void QSocketDevice::setBlocking( bool enable )
{
#if defined(QSOCKETDEVICE_DEBUG)
qDebug( "QSocketDevice::setBlocking( %d )", enable );
tqDebug( "QSocketDevice::setBlocking( %d )", enable );
#endif
if ( !isValid() )
return;
@ -760,20 +760,20 @@ Q_LONG QSocketDevice::readBlock( char *data, Q_ULONG maxlen )
{
#if defined(QT_CHECK_NULL)
if ( data == 0 && maxlen != 0 ) {
qWarning( "QSocketDevice::readBlock: Null pointer error" );
tqWarning( "QSocketDevice::readBlock: Null pointer error" );
}
#endif
#if defined(QT_CHECK_STATE)
if ( !isValid() ) {
qWarning( "QSocketDevice::readBlock: Invalid socket" );
tqWarning( "QSocketDevice::readBlock: Invalid socket" );
return -1;
}
if ( !isOpen() ) {
qWarning( "QSocketDevice::readBlock: Device is not open" );
tqWarning( "QSocketDevice::readBlock: Device is not open" );
return -1;
}
if ( !isReadable() ) {
qWarning( "QSocketDevice::readBlock: Read operation not permitted" );
tqWarning( "QSocketDevice::readBlock: Read operation not permitted" );
return -1;
}
#endif
@ -851,25 +851,25 @@ Q_LONG QSocketDevice::writeBlock( const char *data, Q_ULONG len )
{
if ( data == 0 && len != 0 ) {
#if defined(QT_CHECK_NULL) || defined(QSOCKETDEVICE_DEBUG)
qWarning( "QSocketDevice::writeBlock: Null pointer error" );
tqWarning( "QSocketDevice::writeBlock: Null pointer error" );
#endif
return -1;
}
if ( !isValid() ) {
#if defined(QT_CHECK_STATE) || defined(QSOCKETDEVICE_DEBUG)
qWarning( "QSocketDevice::writeBlock: Invalid socket" );
tqWarning( "QSocketDevice::writeBlock: Invalid socket" );
#endif
return -1;
}
if ( !isOpen() ) {
#if defined(QT_CHECK_STATE) || defined(QSOCKETDEVICE_DEBUG)
qWarning( "QSocketDevice::writeBlock: Device is not open" );
tqWarning( "QSocketDevice::writeBlock: Device is not open" );
#endif
return -1;
}
if ( !isWritable() ) {
#if defined(QT_CHECK_STATE) || defined(QSOCKETDEVICE_DEBUG)
qWarning( "QSocketDevice::writeBlock: Write operation not permitted" );
tqWarning( "QSocketDevice::writeBlock: Write operation not permitted" );
#endif
return -1;
}
@ -939,32 +939,32 @@ Q_LONG QSocketDevice::writeBlock( const char * data, Q_ULONG len,
{
if ( t != Datagram ) {
#if defined(QT_CHECK_STATE) || defined(QSOCKETDEVICE_DEBUG)
qWarning( "QSocketDevice::sendBlock: Not datagram" );
tqWarning( "QSocketDevice::sendBlock: Not datagram" );
#endif
return -1; // for now - later we can do t/tcp
}
if ( data == 0 && len != 0 ) {
#if defined(QT_CHECK_NULL) || defined(QSOCKETDEVICE_DEBUG)
qWarning( "QSocketDevice::sendBlock: Null pointer error" );
tqWarning( "QSocketDevice::sendBlock: Null pointer error" );
#endif
return -1;
}
if ( !isValid() ) {
#if defined(QT_CHECK_STATE) || defined(QSOCKETDEVICE_DEBUG)
qWarning( "QSocketDevice::sendBlock: Invalid socket" );
tqWarning( "QSocketDevice::sendBlock: Invalid socket" );
#endif
return -1;
}
if ( !isOpen() ) {
#if defined(QT_CHECK_STATE) || defined(QSOCKETDEVICE_DEBUG)
qWarning( "QSocketDevice::sendBlock: Device is not open" );
tqWarning( "QSocketDevice::sendBlock: Device is not open" );
#endif
return -1;
}
if ( !isWritable() ) {
#if defined(QT_CHECK_STATE) || defined(QSOCKETDEVICE_DEBUG)
qWarning( "QSocketDevice::sendBlock: Write operation not permitted" );
tqWarning( "QSocketDevice::sendBlock: Write operation not permitted" );
#endif
return -1;
}

@ -159,7 +159,7 @@ static QCleanupHandler<QGLFormat> qgl_cleanup_format;
if ( !w->format().stereo() ) {
// ok, goggles off
if ( !w->format().hasOverlay() ) {
qFatal( "Cool hardware required" );
tqFatal( "Cool hardware required" );
}
}
\endcode
@ -211,9 +211,9 @@ QGLFormat::QGLFormat()
: QGLWidget( QGLFormat( StencilBuffer | AlphaChannel ), parent, name )
{
if ( !format().stencil() )
qWarning( "Could not get stencil buffer; results will be suboptimal" );
tqWarning( "Could not get stencil buffer; results will be suboptimal" );
if ( !format().alphaChannel() )
qWarning( "Could not get alpha channel; results will be suboptimal" );
tqWarning( "Could not get alpha channel; results will be suboptimal" );
...
}
\endcode
@ -877,7 +877,7 @@ void QGLContext::setDevice( QPaintDevice *pDev )
if ( d->paintDevice && (d->paintDevice->devType() != QInternal::Widget
&& d->paintDevice->devType() != QInternal::Pixmap) ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QGLContext: Unsupported paint device type" );
tqWarning( "QGLContext: Unsupported paint device type" );
#endif
}
}

@ -56,7 +56,7 @@
#define QGL_VERSION 450
#define QGL_VERSION_STR "4.5"
QM_EXPORT_OPENGL inline const char *qGLVersion() {
qObsolete( 0, "qGLVersion", "qVersion" );
tqObsolete( 0, "qGLVersion", "qVersion" );
return QGL_VERSION_STR;
}
#endif

@ -135,7 +135,7 @@ bool qt_resolve_gl_symbols(bool fatal)
if (!qt_glCallLists) { // if this fails the rest will surely fail
if (fatal)
qFatal("Unable to resolve GL/GLX symbols - please check your GL library installation.");
tqFatal("Unable to resolve GL/GLX symbols - please check your GL library installation.");
return FALSE;
}
@ -241,7 +241,7 @@ static Colormap choose_cmap( Display *dpy, XVisualInfo *vi )
const char *v = glXQueryServerString( dpy, vi->screen, GLX_VERSION );
if ( v )
mesa_gl = strstr(v,"Mesa") != 0;
qAddPostRoutine( cleanup_cmaps );
tqAddPostRoutine( cleanup_cmaps );
}
CMapEntry *x = cmap_dict->find( (long) vi->visualid + ( vi->screen * 256 ) );
@ -253,11 +253,11 @@ static Colormap choose_cmap( Display *dpy, XVisualInfo *vi )
XStandardColormap *c;
int n, i;
// qDebug( "Choosing cmap for vID %0x", vi->visualid );
// tqDebug( "Choosing cmap for vID %0x", vi->visualid );
if ( vi->visualid ==
XVisualIDFromVisual( (Visual*)QPaintDevice::x11AppVisual( vi->screen ) ) ) {
// qDebug( "Using x11AppColormap" );
// tqDebug( "Using x11AppColormap" );
return QPaintDevice::x11AppColormap( vi->screen );
}
@ -271,7 +271,7 @@ static Colormap choose_cmap( Display *dpy, XVisualInfo *vi )
if ( c[i].visualid == vi->visual->visualid ) {
x->cmap = c[i].colormap;
x->scmap = c[i];
//qDebug( "Using HP_RGB scmap" );
//tqDebug( "Using HP_RGB scmap" );
}
i++;
@ -288,7 +288,7 @@ static Colormap choose_cmap( Display *dpy, XVisualInfo *vi )
_XmuLookupStandardColormap qt_XmuLookupStandardColormap;
qt_XmuLookupStandardColormap = (_XmuLookupStandardColormap) QLibrary::resolve("Xmu.so.6", "XmuLookupStandardColormap");
if (!qt_XmuLookupStandardColormap)
qFatal("Unable to resolve Xmu symbols - please check your Xmu library installation.");
tqFatal("Unable to resolve Xmu symbols - please check your Xmu library installation.");
#define XmuLookupStandardColormap qt_XmuLookupStandardColormap
#endif
@ -302,7 +302,7 @@ static Colormap choose_cmap( Display *dpy, XVisualInfo *vi )
if ( c[i].visualid == vi->visualid ) {
x->cmap = c[i].colormap;
x->scmap = c[i];
//qDebug( "Using RGB_DEFAULT scmap" );
//tqDebug( "Using RGB_DEFAULT scmap" );
}
i++;
}
@ -315,7 +315,7 @@ static Colormap choose_cmap( Display *dpy, XVisualInfo *vi )
x->cmap = XCreateColormap( dpy, RootWindow(dpy,vi->screen), vi->visual,
AllocNone );
x->alloc = TRUE;
// qDebug( "Allocating cmap" );
// tqDebug( "Allocating cmap" );
}
// associate cmap with visualid
@ -466,7 +466,7 @@ bool QGLContext::chooseContext( const QGLContext* shareContext )
if ( shareContext &&
( !shareContext->isValid() || !shareContext->cx ) ) {
#if defined(QT_CHECK_NULL)
qWarning("QGLContext::chooseContext(): Cannot share with invalid context");
tqWarning("QGLContext::chooseContext(): Cannot share with invalid context");
#endif
shareContext = 0;
}
@ -703,7 +703,7 @@ void QGLContext::makeCurrent()
{
if ( !d->valid ) {
#if defined(QT_CHECK_STATE)
qWarning("QGLContext::makeCurrent(): Cannot make invalid context current.");
tqWarning("QGLContext::makeCurrent(): Cannot make invalid context current.");
#endif
return;
}
@ -718,9 +718,9 @@ void QGLContext::makeCurrent()
((QWidget *)d->paintDevice)->winId(),
(GLXContext)cx );
#if defined(QT_CHECK_NULL)
// qDebug("makeCurrent: %i, vi=%i, vi->vi=%i, vi->id=%i", (int)this, (int)vi, (int)((XVisualInfo*)vi)->visual, (int)((XVisualInfo*)vi)->visualid );
// tqDebug("makeCurrent: %i, vi=%i, vi->vi=%i, vi->id=%i", (int)this, (int)vi, (int)((XVisualInfo*)vi)->visual, (int)((XVisualInfo*)vi)->visualid );
if ( !ok )
qWarning("QGLContext::makeCurrent(): Failed.");
tqWarning("QGLContext::makeCurrent(): Failed.");
#endif
if ( ok )
currentCtx = this;
@ -881,13 +881,13 @@ void qgl_use_font(QFontEngineXft *engine, int first, int count, int listBase)
err = FT_Load_Glyph(face, FT_Get_Char_Index(face, i), FT_LOAD_DEFAULT);
if (err) {
qDebug("failed loading glyph %d from font", i);
tqDebug("failed loading glyph %d from font", i);
Q_ASSERT(!err);
}
err = FT_Render_Glyph(face->glyph, (antialiased ? ft_render_mode_normal
: ft_render_mode_mono));
if (err) {
qDebug("failed rendering glyph %d from font", i);
tqDebug("failed rendering glyph %d from font", i);
Q_ASSERT(!err);
}
@ -1011,7 +1011,7 @@ void QGLOverlayWidget::initializeGL()
if ( transparentColor.isValid() )
qglClearColor( transparentColor );
else
qWarning( "QGLOverlayWidget::initializeGL(): Could not get transparent color" );
tqWarning( "QGLOverlayWidget::initializeGL(): Could not get transparent color" );
realWidget->initializeOverlayGL();
}
@ -1128,13 +1128,13 @@ void QGLWidget::setContext( QGLContext *context,
{
if ( context == 0 ) {
#if defined(QT_CHECK_NULL)
qWarning( "QGLWidget::setContext: Cannot set null context" );
tqWarning( "QGLWidget::setContext: Cannot set null context" );
#endif
return;
}
if ( !context->deviceIsPixmap() && context->device() != this ) {
#if defined(QT_CHECK_STATE)
qWarning( "QGLWidget::setContext: Context must refer to this widget" );
tqWarning( "QGLWidget::setContext: Context must refer to this widget" );
#endif
return;
}
@ -1333,7 +1333,7 @@ void QGLWidget::setColormap( const QGLColormap & c )
return;
if ( !cmap.d->cmapHandle && !qCanAllocColors( this ) ) {
qWarning( "QGLWidget::setColormap: Cannot create a read/write "
tqWarning( "QGLWidget::setColormap: Cannot create a read/write "
"colormap for this visual" );
return;
}

@ -173,7 +173,7 @@ void QGLColormap::setEntry( int idx, QRgb color )
#if defined(QT_CHECK_RANGE)
if ( idx < 0 || idx > (int) d->cells.size() ) {
qWarning( "QGLColormap::setRgb: Index out of range." );
tqWarning( "QGLColormap::setRgb: Index out of range." );
return;
}
#endif

@ -411,7 +411,7 @@ QIBaseResult::~QIBaseResult()
bool QIBaseResult::prepare(const QString& query)
{
//qDebug("prepare: %s", query.ascii());
//tqDebug("prepare: %s", query.ascii());
if (!driver() || !driver()->isOpen() || driver()->isOpenError())
return FALSE;
d->cleanup();
@ -471,7 +471,7 @@ bool QIBaseResult::exec()
if (d->inda && extension()->index.count() > 0) {
QMap<int, QString>::ConstIterator it;
if ((int)extension()->index.count() > d->inda->sqld) {
qWarning("QIBaseResult::exec: Parameter mismatch, expected %d, got %d parameters", d->inda->sqld, extension()->index.count());
tqWarning("QIBaseResult::exec: Parameter mismatch, expected %d, got %d parameters", d->inda->sqld, extension()->index.count());
return FALSE;
}
int para = 0;
@ -560,7 +560,7 @@ bool QIBaseResult::exec()
bool QIBaseResult::reset (const QString& query)
{
// qDebug("reset: %s", query.ascii());
// tqDebug("reset: %s", query.ascii());
if (!driver() || !driver()->isOpen() || driver()->isOpenError())
return FALSE;
d->cleanup();

@ -53,7 +53,7 @@
# define Q_NO_MYSQL_EMBEDDED
#endif
QPtrDict<QSqlOpenExtension> *qSqlOpenExtDict();
QPtrDict<QSqlOpenExtension> *tqSqlOpenExtDict();
static int qMySqlConnectionCount = 0;
static bool qMySqlInitHandledByUser = FALSE;
@ -237,7 +237,7 @@ bool QMYSQLResult::fetchFirst()
QVariant QMYSQLResult::data( int field )
{
if ( !isSelect() || field >= (int) d->fieldTypes.count() ) {
qWarning( "QMYSQLResult::data: column %d out of range", field );
tqWarning( "QMYSQLResult::data: column %d out of range", field );
return QVariant();
}
@ -284,7 +284,7 @@ QVariant QMYSQLResult::data( int field )
return QVariant( val );
}
#ifdef QT_CHECK_RANGE
qWarning("QMYSQLResult::data: unknown data type");
tqWarning("QMYSQLResult::data: unknown data type");
#endif
return QVariant();
}
@ -368,7 +368,7 @@ static void qServerInit()
// but is vital for the embedded lib
if ( mysql_server_init( 0, 0, 0 ) ) {
# ifdef QT_CHECK_RANGE
qWarning( "QMYSQLDriver::qServerInit: unable to start server." );
tqWarning( "QMYSQLDriver::qServerInit: unable to start server." );
# endif
}
@ -404,7 +404,7 @@ QMYSQLDriver::QMYSQLDriver( MYSQL * con, QObject * parent, const char * name )
void QMYSQLDriver::init()
{
qSqlOpenExtDict()->insert( this, new QMYSQLOpenExtension(this) );
tqSqlOpenExtDict()->insert( this, new QMYSQLOpenExtension(this) );
d = new QMYSQLDriverPrivate();
d->mysql = 0;
qMySqlConnectionCount++;
@ -417,8 +417,8 @@ QMYSQLDriver::~QMYSQLDriver()
qServerEnd();
delete d;
if ( !qSqlOpenExtDict()->isEmpty() ) {
QSqlOpenExtension *ext = qSqlOpenExtDict()->take( this );
if ( !tqSqlOpenExtDict()->isEmpty() ) {
QSqlOpenExtension *ext = tqSqlOpenExtDict()->take( this );
delete ext;
}
}
@ -452,7 +452,7 @@ bool QMYSQLDriver::open( const QString&,
const QString&,
int )
{
qWarning("QMYSQLDriver::open(): This version of open() is no longer supported." );
tqWarning("QMYSQLDriver::open(): This version of open() is no longer supported." );
return FALSE;
}
@ -482,7 +482,7 @@ bool QMYSQLDriver::open( const QString& db,
if ( val == "TRUE" || val == "1" )
opts << tmp.left( idx );
else
qWarning( "QMYSQLDriver::open: Illegal connect option value '%s'", tmp.latin1() );
tqWarning( "QMYSQLDriver::open: Illegal connect option value '%s'", tmp.latin1() );
} else {
opts << tmp;
}
@ -505,7 +505,7 @@ bool QMYSQLDriver::open( const QString& db,
else if ( opt == "CLIENT_SSL" )
optionFlags |= CLIENT_SSL;
else
qWarning( "QMYSQLDriver::open: Unknown connect option '%s'", (*it).latin1() );
tqWarning( "QMYSQLDriver::open: Unknown connect option '%s'", (*it).latin1() );
}
if ( (d->mysql = mysql_init((MYSQL*) 0)) &&
@ -696,7 +696,7 @@ bool QMYSQLDriver::beginTransaction()
#endif
if ( !isOpen() ) {
#ifdef QT_CHECK_RANGE
qWarning( "QMYSQLDriver::beginTransaction: Database not open" );
tqWarning( "QMYSQLDriver::beginTransaction: Database not open" );
#endif
return FALSE;
}
@ -714,7 +714,7 @@ bool QMYSQLDriver::commitTransaction()
#endif
if ( !isOpen() ) {
#ifdef QT_CHECK_RANGE
qWarning( "QMYSQLDriver::commitTransaction: Database not open" );
tqWarning( "QMYSQLDriver::commitTransaction: Database not open" );
#endif
return FALSE;
}
@ -732,7 +732,7 @@ bool QMYSQLDriver::rollbackTransaction()
#endif
if ( !isOpen() ) {
#ifdef QT_CHECK_RANGE
qWarning( "QMYSQLDriver::rollbackTransaction: Database not open" );
tqWarning( "QMYSQLDriver::rollbackTransaction: Database not open" );
#endif
return FALSE;
}

@ -127,7 +127,7 @@ public:
QODBCResult * result;
};
QPtrDict<QSqlOpenExtension> *qSqlOpenExtDict();
QPtrDict<QSqlOpenExtension> *tqSqlOpenExtDict();
class QODBCOpenExtension : public QSqlOpenExtension
{
@ -190,7 +190,7 @@ static QString qODBCWarn( const QODBCPrivate* odbc)
static void qSqlWarning( const QString& message, const QODBCPrivate* odbc )
{
#ifdef QT_CHECK_RANGE
qWarning( "%s\tError: %s", message.local8Bit().data(), qODBCWarn( odbc ).local8Bit().data() );
tqWarning( "%s\tError: %s", message.local8Bit().data(), qODBCWarn( odbc ).local8Bit().data() );
#endif
}
@ -309,7 +309,7 @@ static QString qGetStringData( SQLHANDLE hStmt, int column, int colSize, bool& i
break;
} else {
#ifdef QT_CHECK_RANGE
qWarning( "qGetStringData: Error while fetching data (%d)", r );
tqWarning( "qGetStringData: Error while fetching data (%d)", r );
#endif
fieldVal = QString::null;
break;
@ -341,7 +341,7 @@ static QByteArray qGetBinaryData( SQLHANDLE hStmt, int column, QSQLLEN& lengthIn
&nullable );
#ifdef QT_CHECK_RANGE
if ( r != SQL_SUCCESS )
qWarning( "qGetBinaryData: Unable to describe column %d", column );
tqWarning( "qGetBinaryData: Unable to describe column %d", column );
#endif
// SQLDescribeCol may return 0 if size cannot be determined
if (!colSize) {
@ -524,7 +524,7 @@ bool QODBCPrivate::setConnectionOptions( const QString& connOpts )
if ( (idx = tmp.find( '=' )) != -1 )
connMap[ tmp.left( idx ) ] = tmp.mid( idx + 1 ).simplifyWhiteSpace();
else
qWarning( "QODBCDriver::open: Illegal connect option value '%s'", tmp.latin1() );
tqWarning( "QODBCDriver::open: Illegal connect option value '%s'", tmp.latin1() );
}
if ( connMap.count() ) {
QMap<QString, QString>::ConstIterator it;
@ -540,7 +540,7 @@ bool QODBCPrivate::setConnectionOptions( const QString& connOpts )
} else if ( val == "SQL_MODE_READ_WRITE" ) {
v = SQL_MODE_READ_WRITE;
} else {
qWarning( QString( "QODBCDriver::open: Unknown option value '%1'" ).arg( *it ) );
tqWarning( QString( "QODBCDriver::open: Unknown option value '%1'" ).arg( *it ) );
break;
}
r = SQLSetConnectAttr( hDbc, SQL_ATTR_ACCESS_MODE, (SQLPOINTER) v, 0 );
@ -565,7 +565,7 @@ bool QODBCPrivate::setConnectionOptions( const QString& connOpts )
} else if ( val == "SQL_FALSE" ) {
v = SQL_FALSE;
} else {
qWarning( QString( "QODBCDriver::open: Unknown option value '%1'" ).arg( *it ) );
tqWarning( QString( "QODBCDriver::open: Unknown option value '%1'" ).arg( *it ) );
break;
}
r = SQLSetConnectAttr( hDbc, SQL_ATTR_METADATA_ID, (SQLPOINTER) v, 0 );
@ -587,14 +587,14 @@ bool QODBCPrivate::setConnectionOptions( const QString& connOpts )
} else if ( val == "SQL_OPT_TRACE_ON" ) {
v = SQL_OPT_TRACE_ON;
} else {
qWarning( QString( "QODBCDriver::open: Unknown option value '%1'" ).arg( *it ) );
tqWarning( QString( "QODBCDriver::open: Unknown option value '%1'" ).arg( *it ) );
break;
}
r = SQLSetConnectAttr( hDbc, SQL_ATTR_TRACE, (SQLPOINTER) v, 0 );
}
#ifdef QT_CHECK_RANGE
else {
qWarning( QString("QODBCDriver::open: Unknown connection attribute '%1'").arg( opt ) );
tqWarning( QString("QODBCDriver::open: Unknown connection attribute '%1'").arg( opt ) );
}
#endif
if ( r != SQL_SUCCESS && r != SQL_SUCCESS_WITH_INFO ) {
@ -860,7 +860,7 @@ bool QODBCResult::fetchLast()
QVariant QODBCResult::data( int field )
{
if ( field >= (int) d->rInf.count() ) {
qWarning( "QODBCResult::data: column %d out of range", field );
tqWarning( "QODBCResult::data: column %d out of range", field );
return QVariant();
}
if ( fieldCache.contains( field ) )
@ -1230,7 +1230,7 @@ bool QODBCResult::exec()
para++;
if ( r != SQL_SUCCESS ) {
#ifdef QT_CHECK_RANGE
qWarning( "QODBCResult::exec: unable to bind variable: %s", qODBCWarn( d ).local8Bit().data() );
tqWarning( "QODBCResult::exec: unable to bind variable: %s", qODBCWarn( d ).local8Bit().data() );
#endif
setLastError( qMakeError( "Unable to bind variable", QSqlError::Statement, d ) );
return FALSE;
@ -1240,7 +1240,7 @@ bool QODBCResult::exec()
r = SQLExecute( d->hStmt );
if ( r != SQL_SUCCESS && r != SQL_SUCCESS_WITH_INFO ) {
#ifdef QT_CHECK_RANGE
qWarning( "QODBCResult::exec: Unable to execute statement: %s", qODBCWarn( d ).local8Bit().data() );
tqWarning( "QODBCResult::exec: Unable to execute statement: %s", qODBCWarn( d ).local8Bit().data() );
#endif
setLastError( qMakeError( "Unable to execute statement", QSqlError::Statement, d ) );
return FALSE;
@ -1345,7 +1345,7 @@ QODBCDriver::QODBCDriver( SQLHANDLE env, SQLHANDLE con, QObject * parent, const
void QODBCDriver::init()
{
qSqlOpenExtDict()->insert( this, new QODBCOpenExtension(this) );
tqSqlOpenExtDict()->insert( this, new QODBCOpenExtension(this) );
d = new QODBCPrivate();
}
@ -1353,8 +1353,8 @@ QODBCDriver::~QODBCDriver()
{
cleanup();
delete d;
if ( !qSqlOpenExtDict()->isEmpty() ) {
QSqlOpenExtension *ext = qSqlOpenExtDict()->take( this );
if ( !tqSqlOpenExtDict()->isEmpty() ) {
QSqlOpenExtension *ext = tqSqlOpenExtDict()->take( this );
delete ext;
}
}
@ -1398,7 +1398,7 @@ bool QODBCDriver::open( const QString&,
const QString&,
int )
{
qWarning("QODBCDriver::open(): This version of open() is no longer supported." );
tqWarning("QODBCDriver::open(): This version of open() is no longer supported." );
return FALSE;
}
@ -1603,7 +1603,7 @@ bool QODBCPrivate::checkDriver() const
#endif
if ( sup == SQL_FALSE ) {
#ifdef QT_CHECK_RANGE
qWarning ( "QODBCDriver::open: Warning - Driver doesn't support all needed functionality (%d). "
tqWarning ( "QODBCDriver::open: Warning - Driver doesn't support all needed functionality (%d). "
"Please look at the Qt SQL Module Driver documentation for more information.", reqFunc[ i ] );
#endif
return FALSE;
@ -1623,7 +1623,7 @@ bool QODBCPrivate::checkDriver() const
#endif
if ( sup == SQL_FALSE ) {
#ifdef QT_CHECK_RANGE
qWarning( "QODBCDriver::checkDriver: Warning - Driver doesn't support some non-critical functions (%d)", optFunc[ i ] );
tqWarning( "QODBCDriver::checkDriver: Warning - Driver doesn't support some non-critical functions (%d)", optFunc[ i ] );
#endif
return TRUE;
}
@ -1656,7 +1656,7 @@ bool QODBCDriver::beginTransaction()
{
if ( !isOpen() ) {
#ifdef QT_CHECK_RANGE
qWarning(" QODBCDriver::beginTransaction: Database not open" );
tqWarning(" QODBCDriver::beginTransaction: Database not open" );
#endif
return FALSE;
}
@ -1676,7 +1676,7 @@ bool QODBCDriver::commitTransaction()
{
if ( !isOpen() ) {
#ifdef QT_CHECK_RANGE
qWarning(" QODBCDriver::commitTransaction: Database not open" );
tqWarning(" QODBCDriver::commitTransaction: Database not open" );
#endif
return FALSE;
}
@ -1694,7 +1694,7 @@ bool QODBCDriver::rollbackTransaction()
{
if ( !isOpen() ) {
#ifdef QT_CHECK_RANGE
qWarning(" QODBCDriver::rollbackTransaction: Database not open" );
tqWarning(" QODBCDriver::rollbackTransaction: Database not open" );
#endif
return FALSE;
}

@ -64,8 +64,8 @@
# undef open
#endif
QPtrDict<QSqlDriverExtension> *qSqlDriverExtDict();
QPtrDict<QSqlOpenExtension> *qSqlOpenExtDict();
QPtrDict<QSqlDriverExtension> *tqSqlDriverExtDict();
QPtrDict<QSqlOpenExtension> *tqSqlOpenExtDict();
class QPSQLPrivate
{
@ -272,7 +272,7 @@ static QPoint pointFromString( const QString& s)
QVariant QPSQLResult::data( int i )
{
if ( i >= PQnfields( d->result ) ) {
qWarning( "QPSQLResult::data: column %d out of range", i );
tqWarning( "QPSQLResult::data: column %d out of range", i );
return QVariant();
}
int ptype = PQftype( d->result, i );
@ -395,7 +395,7 @@ QVariant QPSQLResult::data( int i )
int fd = lo_open( d->connection, oid, INV_READ );
#ifdef QT_CHECK_RANGE
if ( fd < 0) {
qWarning( "QPSQLResult::data: unable to open large object for read" );
tqWarning( "QPSQLResult::data: unable to open large object for read" );
((QSqlDriver*)driver())->commitTransaction();
return QVariant( ba );
}
@ -429,7 +429,7 @@ QVariant QPSQLResult::data( int i )
#endif
if (retval < 0) {
qWarning( "QPSQLResult::data: unable to read large object" );
tqWarning( "QPSQLResult::data: unable to read large object" );
} else {
ba.duplicate( buf, size );
}
@ -441,7 +441,7 @@ QVariant QPSQLResult::data( int i )
default:
case QVariant::Invalid:
#ifdef QT_CHECK_RANGE
qWarning("QPSQLResult::data: unknown data type");
tqWarning("QPSQLResult::data: unknown data type");
#endif
;
}
@ -512,7 +512,7 @@ static void setDatestyle( PGconn* connection )
#ifdef QT_CHECK_RANGE
int status = PQresultStatus( result );
if ( status != PGRES_COMMAND_OK )
qWarning( "%s", PQerrorMessage( connection ) );
tqWarning( "%s", PQerrorMessage( connection ) );
#endif
PQclear( result );
}
@ -531,7 +531,7 @@ static QPSQLDriver::Protocol getPSQLVersion( PGconn* connection )
int vMin = rx.cap( 2 ).toInt();
if ( vMaj < 6 ) {
#ifdef QT_CHECK_RANGE
qWarning( "This version of PostgreSQL is not supported and may not work." );
tqWarning( "This version of PostgreSQL is not supported and may not work." );
#endif
return QPSQLDriver::Version6;
}
@ -547,7 +547,7 @@ static QPSQLDriver::Protocol getPSQLVersion( PGconn* connection )
}
} else {
#ifdef QT_CHECK_RANGE
qWarning( "This version of PostgreSQL is not supported and may not work." );
tqWarning( "This version of PostgreSQL is not supported and may not work." );
#endif
}
@ -574,8 +574,8 @@ QPSQLDriver::QPSQLDriver( PGconn * conn, QObject * parent, const char * name )
void QPSQLDriver::init()
{
qSqlDriverExtDict()->insert( this, new QPSQLDriverExtension(this) );
qSqlOpenExtDict()->insert( this, new QPSQLOpenExtension(this) );
tqSqlDriverExtDict()->insert( this, new QPSQLDriverExtension(this) );
tqSqlOpenExtDict()->insert( this, new QPSQLOpenExtension(this) );
d = new QPSQLPrivate();
}
@ -585,12 +585,12 @@ QPSQLDriver::~QPSQLDriver()
if ( d->connection )
PQfinish( d->connection );
delete d;
if ( !qSqlDriverExtDict()->isEmpty() ) {
QSqlDriverExtension *ext = qSqlDriverExtDict()->take( this );
if ( !tqSqlDriverExtDict()->isEmpty() ) {
QSqlDriverExtension *ext = tqSqlDriverExtDict()->take( this );
delete ext;
}
if ( !qSqlOpenExtDict()->isEmpty() ) {
QSqlOpenExtension *ext = qSqlOpenExtDict()->take( this );
if ( !tqSqlOpenExtDict()->isEmpty() ) {
QSqlOpenExtension *ext = tqSqlOpenExtDict()->take( this );
delete ext;
}
}
@ -623,7 +623,7 @@ bool QPSQLDriver::open( const QString&,
const QString&,
int )
{
qWarning("QPSQLDriver::open(): This version of open() is no longer supported." );
tqWarning("QPSQLDriver::open(): This version of open() is no longer supported." );
return FALSE;
}
@ -688,7 +688,7 @@ bool QPSQLDriver::beginTransaction()
{
if ( !isOpen() ) {
#ifdef QT_CHECK_RANGE
qWarning( "QPSQLDriver::beginTransaction: Database not open" );
tqWarning( "QPSQLDriver::beginTransaction: Database not open" );
#endif
return FALSE;
}
@ -706,7 +706,7 @@ bool QPSQLDriver::commitTransaction()
{
if ( !isOpen() ) {
#ifdef QT_CHECK_RANGE
qWarning( "QPSQLDriver::commitTransaction: Database not open" );
tqWarning( "QPSQLDriver::commitTransaction: Database not open" );
#endif
return FALSE;
}
@ -724,7 +724,7 @@ bool QPSQLDriver::rollbackTransaction()
{
if ( !isOpen() ) {
#ifdef QT_CHECK_RANGE
qWarning( "QPSQLDriver::rollbackTransaction: Database not open" );
tqWarning( "QPSQLDriver::rollbackTransaction: Database not open" );
#endif
return FALSE;
}

@ -112,10 +112,10 @@ public:
#ifdef QT_DEBUG_DATATABLE
void qt_debug_buffer( const QString& msg, QSqlRecord* cursor )
{
qDebug("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");
qDebug(msg);
tqDebug("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");
tqDebug(msg);
for ( uint j = 0; j < cursor->count(); ++j ) {
qDebug(cursor->field(j)->name() + " type:" + QString(cursor->field(j)->value().typeName()) + " value:" + cursor->field(j)->value().toString() );
tqDebug(cursor->field(j)->name() + " type:" + QString(cursor->field(j)->value().typeName()) + " value:" + cursor->field(j)->value().toString() );
}
}
#endif
@ -1047,7 +1047,7 @@ bool QDataTable::insertCurrent()
return FALSE;
if ( !sqlCursor()->canInsert() ) {
#ifdef QT_CHECK_RANGE
qWarning("QDataTable::insertCurrent: insert not allowed for %s",
tqWarning("QDataTable::insertCurrent: insert not allowed for %s",
sqlCursor()->name().latin1() );
#endif
endInsert();
@ -1121,7 +1121,7 @@ bool QDataTable::updateCurrent()
return FALSE;
if ( sqlCursor()->primaryIndex().count() == 0 ) {
#ifdef QT_CHECK_RANGE
qWarning("QDataTable::updateCurrent: no primary index for %s",
tqWarning("QDataTable::updateCurrent: no primary index for %s",
sqlCursor()->name().latin1() );
#endif
endUpdate();
@ -1129,7 +1129,7 @@ bool QDataTable::updateCurrent()
}
if ( !sqlCursor()->canUpdate() ) {
#ifdef QT_CHECK_RANGE
qWarning("QDataTable::updateCurrent: updates not allowed for %s",
tqWarning("QDataTable::updateCurrent: updates not allowed for %s",
sqlCursor()->name().latin1() );
#endif
endUpdate();
@ -1195,7 +1195,7 @@ bool QDataTable::deleteCurrent()
return FALSE;
if ( sqlCursor()->primaryIndex().count() == 0 ) {
#ifdef QT_CHECK_RANGE
qWarning("QDataTable::deleteCurrent: no primary index %s",
tqWarning("QDataTable::deleteCurrent: no primary index %s",
sqlCursor()->name().latin1() );
#endif
return FALSE;

@ -400,7 +400,7 @@ void QSqlCursor::setName( const QString& name, bool autopopulate )
}
#ifdef QT_CHECK_RANGE
if ( isEmpty() )
qWarning("QSqlCursor::setName: unable to build record, does '%s' exist?", name.latin1() );
tqWarning("QSqlCursor::setName: unable to build record, does '%s' exist?", name.latin1() );
#endif
}
}
@ -1533,7 +1533,7 @@ bool QSqlCursor::isNull( const QString& name ) const
void QSqlCursor::setValue( int i, const QVariant& val )
{
#ifdef QT_DEBUG
qDebug("QSqlCursor::setValue(): This will not affect actual database values. Use primeInsert(), primeUpdate() or primeDelete().");
tqDebug("QSqlCursor::setValue(): This will not affect actual database values. Use primeInsert(), primeUpdate() or primeDelete().");
#endif
QSqlRecord::setValue( i, val );
}
@ -1542,7 +1542,7 @@ void QSqlCursor::setValue( int i, const QVariant& val )
void QSqlCursor::setValue( const QString& name, const QVariant& val )
{
#ifdef QT_DEBUG
qDebug("QSqlCursor::setValue(): This will not affect actual database values. Use primeInsert(), primeUpdate() or primeDelete().");
tqDebug("QSqlCursor::setValue(): This will not affect actual database values. Use primeInsert(), primeUpdate() or primeDelete().");
#endif
QSqlRecord::setValue( name, val );
}

@ -92,7 +92,7 @@ QPtrDict<QSqlOpenExtension> *qt_open_extension_dict = 0;
static QSingleCleanupHandler< QPtrDict<QSqlDriverExtension> > qt_driver_ext_cleanup;
static QSingleCleanupHandler< QPtrDict<QSqlOpenExtension> > qt_open_ext_cleanup;
Q_EXPORT QPtrDict<QSqlDriverExtension> *qSqlDriverExtDict()
Q_EXPORT QPtrDict<QSqlDriverExtension> *tqSqlDriverExtDict()
{
if ( !qt_driver_extension_dict ) {
qt_driver_extension_dict = new QPtrDict<QSqlDriverExtension>;
@ -101,7 +101,7 @@ Q_EXPORT QPtrDict<QSqlDriverExtension> *qSqlDriverExtDict()
return qt_driver_extension_dict;
}
Q_EXPORT QPtrDict<QSqlOpenExtension> *qSqlOpenExtDict()
Q_EXPORT QPtrDict<QSqlOpenExtension> *tqSqlOpenExtDict()
{
if ( !qt_open_extension_dict ) {
qt_open_extension_dict = new QPtrDict<QSqlOpenExtension>;
@ -212,7 +212,7 @@ QSqlDatabaseManager* QSqlDatabaseManager::instance()
static QGuardedPtr<QSqlDatabaseManager> sqlConnection = 0;
if ( !sqlConnection ) {
if( qApp == 0 ){
qFatal( "QSqlDatabaseManager: A QApplication object has to be "
tqFatal( "QSqlDatabaseManager: A QApplication object has to be "
"instantiated in order to use the SQL module." );
return 0;
}
@ -238,7 +238,7 @@ QSqlDatabase* QSqlDatabaseManager::database( const QString& name, bool open )
db->open();
#ifdef QT_CHECK_RANGE
if ( !db->isOpen() )
qWarning("QSqlDatabaseManager::database: unable to open database: %s: %s",
tqWarning("QSqlDatabaseManager::database: unable to open database: %s: %s",
db->lastError().databaseText().latin1(), db->lastError().driverText().latin1() );
#endif
}
@ -690,8 +690,8 @@ void QSqlDatabase::init( const QString& type, const QString& )
if ( !d->driver ) {
#ifdef QT_CHECK_RANGE
qWarning( "QSqlDatabase: %s driver not loaded", type.latin1() );
qWarning( "QSqlDatabase: available drivers: %s", drivers().join(" ").latin1() );
tqWarning( "QSqlDatabase: %s driver not loaded", type.latin1() );
tqWarning( "QSqlDatabase: available drivers: %s", drivers().join(" ").latin1() );
#endif
d->driver = new QNullDriver();
d->driver->setLastError( QSqlError( "Driver not loaded", "Driver not loaded" ) );

@ -50,8 +50,8 @@
#define DBState_OpenError 0x0002
// ### This needs to go in 4.0!
QPtrDict<QSqlDriverExtension> *qSqlDriverExtDict();
QPtrDict<QSqlOpenExtension> *qSqlOpenExtDict();
QPtrDict<QSqlDriverExtension> *tqSqlDriverExtDict();
QPtrDict<QSqlOpenExtension> *tqSqlOpenExtDict();
/*!
\class QSqlDriver qsqldriver.h
@ -132,8 +132,8 @@ QSqlDriver::~QSqlDriver()
bool QSqlDriver::isOpen() const
{
if ( !qSqlDriverExtDict()->isEmpty() ) {
QSqlDriverExtension *ext = qSqlDriverExtDict()->find( (QSqlDriver *) this );
if ( !tqSqlDriverExtDict()->isEmpty() ) {
QSqlDriverExtension *ext = tqSqlDriverExtDict()->find( (QSqlDriver *) this );
if ( ext )
return ext->isOpen();
}
@ -498,8 +498,8 @@ bool QSqlDriver::open( const QString& db,
int port,
const QString& connOpts )
{
if ( !qSqlOpenExtDict()->isEmpty() ) {
QSqlOpenExtension *ext = qSqlOpenExtDict()->find( (QSqlDriver *) this );
if ( !tqSqlOpenExtDict()->isEmpty() ) {
QSqlOpenExtension *ext = tqSqlOpenExtDict()->find( (QSqlDriver *) this );
if ( ext )
return ext->open( db, user, password, host, port, connOpts );
}

@ -193,7 +193,7 @@ void QSqlField::setValue( const QVariant& value )
return;
if ( value.type() != d->type ) {
if ( !val.canCast( d->type ) )
qWarning("QSqlField::setValue: %s cannot cast from %s to %s",
tqWarning("QSqlField::setValue: %s cannot cast from %s to %s",
nm.local8Bit().data(), value.typeName(), QVariant::typeToName( d->type ) );
}
val = value;

@ -277,7 +277,7 @@ QSqlIndex QSqlIndex::fromStringList( const QStringList& l, const QSqlCursor* cur
if ( field )
newSort.append( *field, desc );
else
qWarning( "QSqlIndex::fromStringList: unknown field: '%s'", f.latin1());
tqWarning( "QSqlIndex::fromStringList: unknown field: '%s'", f.latin1());
}
return newSort;
}

@ -307,10 +307,10 @@ static int compare_recs( const QSqlRecord* buf1, const QSqlRecord* buf2,
#ifdef QT_DEBUG_DATAMANAGER
static void debug_datamanager_buffer( const QString& msg, QSqlRecord* cursor )
{
qDebug("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");
qDebug( "%s", msg.latin1() );
tqDebug("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");
tqDebug( "%s", msg.latin1() );
for ( uint j = 0; j < cursor->count(); ++j ) {
qDebug( "%s", (cursor->field(j)->name() + " type:"
tqDebug( "%s", (cursor->field(j)->name() + " type:"
+ QString(cursor->field(j)->value().typeName())
+ " value:" + cursor->field(j)->value().toString())
.latin1() );
@ -348,7 +348,7 @@ update. For example:
bool QSqlCursorManager::findBuffer( const QSqlIndex& idx, int atHint )
{
#ifdef QT_DEBUG_DATAMANAGER
qDebug("QSqlCursorManager::findBuffer:");
tqDebug("QSqlCursorManager::findBuffer:");
#endif
QSqlCursor* cur = cursor();
if ( !cur )
@ -363,7 +363,7 @@ bool QSqlCursorManager::findBuffer( const QSqlIndex& idx, int atHint )
QSqlRecord* buf = cur->editBuffer();
bool indexEquals = FALSE;
#ifdef QT_DEBUG_DATAMANAGER
qDebug(" Checking hint...");
tqDebug(" Checking hint...");
#endif
/* check the hint */
if ( cur->seek( atHint ) )
@ -371,7 +371,7 @@ bool QSqlCursorManager::findBuffer( const QSqlIndex& idx, int atHint )
if ( !indexEquals ) {
#ifdef QT_DEBUG_DATAMANAGER
qDebug(" Checking current page...");
tqDebug(" Checking current page...");
#endif
/* check current page */
int pageSize = 20;
@ -389,7 +389,7 @@ bool QSqlCursorManager::findBuffer( const QSqlIndex& idx, int atHint )
if ( !indexEquals && cur->driver()->hasFeature( QSqlDriver::QuerySize )
&& cur->sort().count() ) {
#ifdef QT_DEBUG_DATAMANAGER
qDebug(" Using binary search...");
tqDebug(" Using binary search...");
#endif
// binary search based on record buffer and current sort fields
int lo = 0;
@ -442,7 +442,7 @@ bool QSqlCursorManager::findBuffer( const QSqlIndex& idx, int atHint )
if ( !indexEquals ) {
#ifdef QT_DEBUG_DATAMANAGER
qDebug(" Using brute search...");
tqDebug(" Using brute search...");
#endif
#ifndef QT_NO_CURSOR
QApplication::setOverrideCursor( Qt::waitCursor );
@ -465,7 +465,7 @@ bool QSqlCursorManager::findBuffer( const QSqlIndex& idx, int atHint )
#endif
}
#ifdef QT_DEBUG_DATAMANAGER
qDebug(" Done, result:" + QString::number( indexEquals ) );
tqDebug(" Done, result:" + QString::number( indexEquals ) );
#endif
return indexEquals;
}

@ -221,7 +221,7 @@ QVariant QSqlPropertyMap::property( QWidget * widget )
if ( !mo ) {
#ifdef QT_CHECK_RANGE
qWarning("QSqlPropertyMap::property: %s does not exist", widget->metaObject()->className() );
tqWarning("QSqlPropertyMap::property: %s does not exist", widget->metaObject()->className() );
#endif
return QVariant();
}
@ -240,7 +240,7 @@ void QSqlPropertyMap::setProperty( QWidget * widget, const QVariant & value )
mo = mo->superClass();
if ( !mo ) {
#ifdef QT_CHECK_RANGE
qWarning("QSqlPropertyMap::setProperty: %s not handled by QSqlPropertyMap", widget->metaObject()->className() );
tqWarning("QSqlPropertyMap::setProperty: %s not handled by QSqlPropertyMap", widget->metaObject()->className() );
#endif
return;
}

@ -353,7 +353,7 @@ bool QSqlQuery::exec ( const QString& query )
d->sqlResult->setAt( QSql::BeforeFirst );
if ( !driver() ) {
#ifdef QT_CHECK_RANGE
qWarning("QSqlQuery::exec: no driver" );
tqWarning("QSqlQuery::exec: no driver" );
#endif
return FALSE;
}
@ -363,18 +363,18 @@ bool QSqlQuery::exec ( const QString& query )
d->executedQuery = d->sqlResult->lastQuery();
if ( !driver()->isOpen() || driver()->isOpenError() ) {
#ifdef QT_CHECK_RANGE
qWarning("QSqlQuery::exec: database not open" );
tqWarning("QSqlQuery::exec: database not open" );
#endif
return FALSE;
}
if ( query.isNull() || query.length() == 0 ) {
#ifdef QT_CHECK_RANGE
qWarning("QSqlQuery::exec: empty query" );
tqWarning("QSqlQuery::exec: empty query" );
#endif
return FALSE;
}
#ifdef QT_DEBUG_SQL
qDebug( "\n QSqlQuery: " + query );
tqDebug( "\n QSqlQuery: " + query );
#endif
return d->sqlResult->reset( query );
}
@ -403,7 +403,7 @@ QVariant QSqlQuery::value( int i ) const
return d->sqlResult->data( i );
} else {
#ifdef QT_CHECK_RANGE
qWarning( "QSqlQuery::value: not positioned on a valid record" );
tqWarning( "QSqlQuery::value: not positioned on a valid record" );
#endif
}
return QVariant();
@ -544,7 +544,7 @@ bool QSqlQuery::seek( int i, bool relative )
// let drivers optimize
if ( isForwardOnly() && actualIdx < at() ) {
#ifdef QT_CHECK_RANGE
qWarning("QSqlQuery::seek: cannot seek backwards in a forward only query" );
tqWarning("QSqlQuery::seek: cannot seek backwards in a forward only query" );
#endif
afterSeek();
return FALSE;
@ -661,7 +661,7 @@ bool QSqlQuery::prev()
return FALSE;
if ( isForwardOnly() ) {
#ifdef QT_CHECK_RANGE
qWarning("QSqlQuery::seek: cannot seek backwards in a forward only query" );
tqWarning("QSqlQuery::seek: cannot seek backwards in a forward only query" );
#endif
return FALSE;
}
@ -705,7 +705,7 @@ bool QSqlQuery::first()
return FALSE;
if ( isForwardOnly() && at() > QSql::BeforeFirst ) {
#ifdef QT_CHECK_RANGE
qWarning("QSqlQuery::seek: cannot seek backwards in a forward only query" );
tqWarning("QSqlQuery::seek: cannot seek backwards in a forward only query" );
#endif
return FALSE;
}
@ -937,7 +937,7 @@ bool QSqlQuery::prepare( const QString& query )
d->sqlResult->extension()->clear();
if ( !driver() ) {
#ifdef QT_CHECK_RANGE
qWarning("QSqlQuery::prepare: no driver" );
tqWarning("QSqlQuery::prepare: no driver" );
#endif
return FALSE;
}
@ -946,18 +946,18 @@ bool QSqlQuery::prepare( const QString& query )
d->sqlResult->setQuery( query.stripWhiteSpace() );
if ( !driver()->isOpen() || driver()->isOpenError() ) {
#ifdef QT_CHECK_RANGE
qWarning("QSqlQuery::prepare: database not open" );
tqWarning("QSqlQuery::prepare: database not open" );
#endif
return FALSE;
}
if ( query.isNull() || query.length() == 0 ) {
#ifdef QT_CHECK_RANGE
qWarning("QSqlQuery::prepare: empty query" );
tqWarning("QSqlQuery::prepare: empty query" );
#endif
return FALSE;
}
#ifdef QT_DEBUG_SQL
qDebug( "\n QSqlQuery: " + query );
tqDebug( "\n QSqlQuery: " + query );
#endif
QString q = query;
QRegExp rx(QString::fromLatin1("'[^']*'|:([a-zA-Z0-9_]+)"));
@ -1176,7 +1176,7 @@ QVariant QSqlQuery::boundValue( int pos ) const
QMap<QString, QVariant>::ConstIterator it;
QMap<QString, QVariant> vals = query.boundValues();
for ( it = vals.begin(); it != vals.end(); ++it )
qWarning( "Placeholder: " + it.key() + ", Value: " + (*it).toString() );
tqWarning( "Placeholder: " + it.key() + ", Value: " + (*it).toString() );
...
// Examine the bound values - bound using positional binding
@ -1184,7 +1184,7 @@ QVariant QSqlQuery::boundValue( int pos ) const
QValueList<QVariant> list = query.boundValues().values();
int i = 0;
for ( it = list.begin(); it != list.end(); ++it )
qWarning( "Placeholder pos: %d, Value: " + (*it).toString(), i++ );
tqWarning( "Placeholder pos: %d, Value: " + (*it).toString(), i++ );
...
\endcode

@ -302,7 +302,7 @@ int QSqlRecord::position( const QString& name ) const
return i;
}
#ifdef QT_CHECK_RANGE
qWarning( "QSqlRecord::position: unable to find field %s", name.latin1() );
tqWarning( "QSqlRecord::position: unable to find field %s", name.latin1() );
#endif
return -1;
}
@ -317,7 +317,7 @@ QSqlField* QSqlRecord::field( int i )
checkDetach();
if ( !sh->d->contains( i ) ) {
#ifdef QT_CHECK_RANGE
qWarning( "QSqlRecord::field: index out of range: %d", i );
tqWarning( "QSqlRecord::field: index out of range: %d", i );
#endif
return 0;
}
@ -348,7 +348,7 @@ const QSqlField* QSqlRecord::field( int i ) const
{
if ( !sh->d->contains( i ) ) {
#ifdef QT_CHECK_RANGE
qWarning( "QSqlRecord::field: index out of range: %d", i );
tqWarning( "QSqlRecord::field: index out of range: %d", i );
#endif // QT_CHECK_RANGE
return 0;
}

@ -611,7 +611,7 @@ void QCommonStyle::drawControl( ControlElement element,
{
#if defined(QT_CHECK_STATE)
if (! widget) {
qWarning("QCommonStyle::drawControl: widget parameter cannot be zero!");
tqWarning("QCommonStyle::drawControl: widget parameter cannot be zero!");
return;
}
#endif
@ -1139,7 +1139,7 @@ QRect QCommonStyle::subRect(SubRect r, const QWidget *widget) const
{
#if defined(QT_CHECK_STATE)
if (! widget) {
qWarning("QCommonStyle::subRect: widget parameter cannot be zero!");
tqWarning("QCommonStyle::subRect: widget parameter cannot be zero!");
return QRect();
}
#endif
@ -1491,7 +1491,7 @@ void QCommonStyle::drawComplexControl( ComplexControl control,
{
#if defined(QT_CHECK_STATE)
if (! widget) {
qWarning("QCommonStyle::drawComplexControl: widget parameter cannot be zero!");
tqWarning("QCommonStyle::drawComplexControl: widget parameter cannot be zero!");
return;
}
#endif
@ -1917,7 +1917,7 @@ QRect QCommonStyle::querySubControlMetrics( ComplexControl control,
{
#if defined(QT_CHECK_STATE)
if (! widget) {
qWarning("QCommonStyle::querySubControlMetrics: widget parameter cannot be zero!");
tqWarning("QCommonStyle::querySubControlMetrics: widget parameter cannot be zero!");
return QRect();
}
#endif
@ -2468,7 +2468,7 @@ QSize QCommonStyle::sizeFromContents(ContentsType contents,
#if defined(QT_CHECK_STATE)
if (! widget) {
qWarning("QCommonStyle::sizeFromContents: widget parameter cannot be zero!");
tqWarning("QCommonStyle::sizeFromContents: widget parameter cannot be zero!");
return sz;
}
#endif

@ -296,7 +296,7 @@ bool QBitArray::testBit( uint index ) const
{
#if defined(QT_CHECK_RANGE)
if ( index >= size() ) {
qWarning( "QBitArray::testBit: Index %d out of range", index );
tqWarning( "QBitArray::testBit: Index %d out of range", index );
return FALSE;
}
#endif
@ -315,7 +315,7 @@ void QBitArray::setBit( uint index )
{
#if defined(QT_CHECK_RANGE)
if ( index >= size() ) {
qWarning( "QBitArray::setBit: Index %d out of range", index );
tqWarning( "QBitArray::setBit: Index %d out of range", index );
return;
}
#endif
@ -348,7 +348,7 @@ void QBitArray::clearBit( uint index )
{
#if defined(QT_CHECK_RANGE)
if ( index >= size() ) {
qWarning( "QBitArray::clearBit: Index %d out of range", index );
tqWarning( "QBitArray::clearBit: Index %d out of range", index );
return;
}
#endif
@ -368,7 +368,7 @@ bool QBitArray::toggleBit( uint index )
{
#if defined(QT_CHECK_RANGE)
if ( index >= size() ) {
qWarning( "QBitArray::toggleBit: Index %d out of range", index );
tqWarning( "QBitArray::toggleBit: Index %d out of range", index );
return FALSE;
}
#endif
@ -653,7 +653,7 @@ QDataStream &operator>>( QDataStream &s, QBitArray &a )
s >> len; // read size of array
if ( !a.resize( (uint)len ) ) { // resize array
#if defined(QT_CHECK_NULL)
qWarning( "QDataStream: Not enough memory to read QBitArray" );
tqWarning( "QDataStream: Not enough memory to read QBitArray" );
#endif
len = 0;
}

@ -150,7 +150,7 @@ bool QBuffer::setBuffer( QByteArray buf )
{
if ( isOpen() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QBuffer::setBuffer: Buffer is open" );
tqWarning( "QBuffer::setBuffer: Buffer is open" );
#endif
return FALSE;
}
@ -193,7 +193,7 @@ bool QBuffer::open( int m )
{
if ( isOpen() ) { // buffer already open
#if defined(QT_CHECK_STATE)
qWarning( "QBuffer::open: Buffer already open" );
tqWarning( "QBuffer::open: Buffer already open" );
#endif
return FALSE;
}
@ -262,16 +262,16 @@ bool QBuffer::at( Offset pos )
{
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) {
qWarning( "QBuffer::at: Buffer is not open" );
tqWarning( "QBuffer::at: Buffer is not open" );
return FALSE;
}
#endif
if ( pos > a_len ) {
#if defined(QT_CHECK_RANGE)
#if defined(QT_ABI_QT4)
qWarning( "QBuffer::at: Index %lld out of range", pos );
tqWarning( "QBuffer::at: Index %lld out of range", pos );
#else
qWarning( "QBuffer::at: Index %lu out of range", pos );
tqWarning( "QBuffer::at: Index %lu out of range", pos );
#endif
#endif
return FALSE;
@ -289,15 +289,15 @@ Q_LONG QBuffer::readBlock( char *p, Q_ULONG len )
{
#if defined(QT_CHECK_STATE)
if ( !p ) {
qWarning( "QBuffer::readBlock: Null pointer error" );
tqWarning( "QBuffer::readBlock: Null pointer error" );
return -1;
}
if ( !isOpen() ) { // buffer not open
qWarning( "QBuffer::readBlock: Buffer not open" );
tqWarning( "QBuffer::readBlock: Buffer not open" );
return -1;
}
if ( !isReadable() ) { // reading not permitted
qWarning( "QBuffer::readBlock: Read operation not permitted" );
tqWarning( "QBuffer::readBlock: Read operation not permitted" );
return -1;
}
#endif
@ -337,17 +337,17 @@ Q_LONG QBuffer::writeBlock( const char *p, Q_ULONG len )
#if defined(QT_CHECK_NULL)
if ( p == 0 ) {
qWarning( "QBuffer::writeBlock: Null pointer error" );
tqWarning( "QBuffer::writeBlock: Null pointer error" );
return -1;
}
#endif
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) { // buffer not open
qWarning( "QBuffer::writeBlock: Buffer not open" );
tqWarning( "QBuffer::writeBlock: Buffer not open" );
return -1;
}
if ( !isWritable() ) { // writing not permitted
qWarning( "QBuffer::writeBlock: Write operation not permitted" );
tqWarning( "QBuffer::writeBlock: Write operation not permitted" );
return -1;
}
#endif
@ -355,7 +355,7 @@ Q_LONG QBuffer::writeBlock( const char *p, Q_ULONG len )
Q_ULONG new_len = a_len + a_inc*((ioIndex+len-a_len)/a_inc+1);
if ( !a.resize( new_len ) ) { // could not resize
#if defined(QT_CHECK_NULL)
qWarning( "QBuffer::writeBlock: Memory allocation error" );
tqWarning( "QBuffer::writeBlock: Memory allocation error" );
#endif
setStatus( IO_ResourceError );
return -1;
@ -380,17 +380,17 @@ Q_LONG QBuffer::readLine( char *p, Q_ULONG maxlen )
{
#if defined(QT_CHECK_NULL)
if ( p == 0 ) {
qWarning( "QBuffer::readLine: Null pointer error" );
tqWarning( "QBuffer::readLine: Null pointer error" );
return -1;
}
#endif
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) { // buffer not open
qWarning( "QBuffer::readLine: Buffer not open" );
tqWarning( "QBuffer::readLine: Buffer not open" );
return -1;
}
if ( !isReadable() ) { // reading not permitted
qWarning( "QBuffer::readLine: Read operation not permitted" );
tqWarning( "QBuffer::readLine: Read operation not permitted" );
return -1;
}
#endif
@ -419,11 +419,11 @@ int QBuffer::getch()
{
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) { // buffer not open
qWarning( "QBuffer::getch: Buffer not open" );
tqWarning( "QBuffer::getch: Buffer not open" );
return -1;
}
if ( !isReadable() ) { // reading not permitted
qWarning( "QBuffer::getch: Read operation not permitted" );
tqWarning( "QBuffer::getch: Read operation not permitted" );
return -1;
}
#endif
@ -450,11 +450,11 @@ int QBuffer::putch( int ch )
{
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) { // buffer not open
qWarning( "QBuffer::putch: Buffer not open" );
tqWarning( "QBuffer::putch: Buffer not open" );
return -1;
}
if ( !isWritable() ) { // writing not permitted
qWarning( "QBuffer::putch: Write operation not permitted" );
tqWarning( "QBuffer::putch: Write operation not permitted" );
return -1;
}
#endif
@ -479,11 +479,11 @@ int QBuffer::ungetch( int ch )
{
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) { // buffer not open
qWarning( "QBuffer::ungetch: Buffer not open" );
tqWarning( "QBuffer::ungetch: Buffer not open" );
return -1;
}
if ( !isReadable() ) { // reading not permitted
qWarning( "QBuffer::ungetch: Read operation not permitted" );
tqWarning( "QBuffer::ungetch: Read operation not permitted" );
return -1;
}
#endif

@ -100,25 +100,25 @@ static bool qt_verify( const QString& library, uint version, uint flags,
if ( (flags & 1) == 0 ) {
if ( warn )
qWarning( "Conflict in %s:\n"
tqWarning( "Conflict in %s:\n"
" Plugin cannot be queried successfully!",
(const char*) QFile::encodeName(library) );
} else if ( ( version > QT_VERSION ) ||
( ( QT_VERSION & 0xff0000 ) > ( version & 0xff0000 ) ) ) {
if ( warn )
qWarning( "Conflict in %s:\n"
tqWarning( "Conflict in %s:\n"
" Plugin uses incompatible Qt library (%d.%d.%d)!",
(const char*) QFile::encodeName(library),
(version&0xff0000) >> 16, (version&0xff00) >> 8, version&0xff );
} else if ( (flags & 2) != (our_flags & 2) ) {
if ( warn )
qWarning( "Conflict in %s:\n"
tqWarning( "Conflict in %s:\n"
" Plugin uses %s Qt library!",
(const char*) QFile::encodeName(library),
(flags & 2) ? "multi threaded" : "single threaded" );
} else if ( key != QT_BUILD_KEY ) {
if ( warn )
qWarning( "Conflict in %s:\n"
tqWarning( "Conflict in %s:\n"
" Plugin uses incompatible Qt library!\n"
" expected build key \"%s\", got \"%s\".",
(const char*) QFile::encodeName(library),
@ -326,7 +326,7 @@ static bool qt_unix_query( const QString &library, uint *version, uint *flags,
{
QFile file( library );
if (! file.open( IO_ReadOnly ) ) {
qWarning( "%s: %s", (const char*) QFile::encodeName(library),
tqWarning( "%s: %s", (const char*) QFile::encodeName(library),
strerror( errno ) );
return FALSE;
}
@ -345,7 +345,7 @@ static bool qt_unix_query( const QString &library, uint *version, uint *flags,
fdlen = maplen;
} else {
// mmap failed
qWarning( "mmap: %s", strerror( errno ) );
tqWarning( "mmap: %s", strerror( errno ) );
#endif // USE_MMAP
// try reading the data into memory instead
data = file.readAll();
@ -367,7 +367,7 @@ static bool qt_unix_query( const QString &library, uint *version, uint *flags,
#ifdef USE_MMAP
if ( mapaddr != MAP_FAILED && munmap(mapaddr, maplen) != 0 ) {
qWarning( "munmap: %s", strerror( errno ) );
tqWarning( "munmap: %s", strerror( errno ) );
}
#endif // USE_MMAP
@ -474,7 +474,7 @@ void QComLibrary::createInstanceInternal()
if ( ! query_done ) {
if ( warn_mismatch ) {
qWarning( "Conflict in %s:\n Plugin cannot be queried successfully!",
tqWarning( "Conflict in %s:\n Plugin cannot be queried successfully!",
(const char*) QFile::encodeName( library() ) );
}
unload();
@ -499,7 +499,7 @@ void QComLibrary::createInstanceInternal()
ucmInstanceProc = (UCMInstanceProc) resolve( "ucm_instantiate" );
#if defined(QT_DEBUG_COMPONENT)
if ( !ucmInstanceProc )
qWarning( "%s: Not a UCOM library.", (const char*) QFile::encodeName(library()) );
tqWarning( "%s: Not a UCOM library.", (const char*) QFile::encodeName(library()) );
#endif
entry = ucmInstanceProc ? ucmInstanceProc() : 0;
@ -514,7 +514,7 @@ void QComLibrary::createInstanceInternal()
}
} else {
#if defined(QT_DEBUG_COMPONENT)
qWarning( "%s: No exported component provided.", (const char*) QFile::encodeName(library()) );
tqWarning( "%s: No exported component provided.", (const char*) QFile::encodeName(library()) );
#endif
unload();
}

@ -116,7 +116,7 @@ static QPtrList<QComLibrary> *liblist()
if ( !libraries ) {
libraries = new QPtrList<QComLibrary>();
libraries->setAutoDelete( TRUE );
qAddPostRoutine( cleanup );
tqAddPostRoutine( cleanup );
}
return libraries;
}

@ -70,7 +70,7 @@
is copied correctly even if \a src and \a dst overlap.
*/
void *qmemmove( void *dst, const void *src, uint len )
void *tqmemmove( void *dst, const void *src, uint len )
{
register char *d;
register char *s;
@ -100,7 +100,7 @@ void *qmemmove( void *dst, const void *src, uint len )
The returned string must be deleted using \c delete[].
*/
char *qstrdup( const char *src )
char *tqstrdup( const char *src )
{
if ( !src )
return 0;
@ -133,7 +133,7 @@ char *qstrdup( const char *src )
\sa qstrcpy()
*/
char *qstrncpy( char *dst, const char *src, uint len )
char *tqstrncpy( char *dst, const char *src, uint len )
{
if ( !src || !dst )
return 0;
@ -170,7 +170,7 @@ char *qstrncpy( char *dst, const char *src, uint len )
Special case II: Returns a random nonzero value if \a str1 is 0
or \a str2 is 0 (but not both).
\sa qstrncmp() qstricmp() qstrnicmp()
\sa qstrncmp() tqstricmp() tqstrnicmp()
\link #asciinotion Note on character comparisons \endlink
*/
@ -192,7 +192,7 @@ char *qstrncpy( char *dst, const char *src, uint len )
Special case II: Returns a random nonzero value if \a str1 is 0
or \a str2 is 0 (but not both).
\sa qstrcmp(), qstricmp(), qstrnicmp()
\sa qstrcmp(), tqstricmp(), tqstrnicmp()
\link #asciinotion Note on character comparisons \endlink
*/
@ -212,11 +212,11 @@ char *qstrncpy( char *dst, const char *src, uint len )
Special case II: Returns a random nonzero value if \a str1 is 0
or \a str2 is 0 (but not both).
\sa qstrcmp(), qstrncmp(), qstrnicmp()
\sa qstrcmp(), qstrncmp(), tqstrnicmp()
\link #asciinotion Note on character comparisons \endlink
*/
int qstricmp( const char *str1, const char *str2 )
int tqstricmp( const char *str1, const char *str2 )
{
register const uchar *s1 = (const uchar *)str1;
register const uchar *s2 = (const uchar *)str2;
@ -246,11 +246,11 @@ int qstricmp( const char *str1, const char *str2 )
Special case II: Returns a random nonzero value if \a str1 is 0
or \a str2 is 0 (but not both).
\sa qstrcmp(), qstrncmp() qstricmp()
\sa qstrcmp(), qstrncmp() tqstricmp()
\link #asciinotion Note on character comparisons \endlink
*/
int qstrnicmp( const char *str1, const char *str2, uint len )
int tqstrnicmp( const char *str1, const char *str2, uint len )
{
register const uchar *s1 = (const uchar *)str1;
register const uchar *s2 = (const uchar *)str2;
@ -308,7 +308,7 @@ static void createCRC16Table() // build CRC16 lookup table
The checksum is independent of the byte order (endianness).
*/
Q_UINT16 qChecksum( const char *data, uint len )
Q_UINT16 tqChecksum( const char *data, uint len )
{
if ( !crc_tbl_init ) { // create lookup table
@ -335,7 +335,7 @@ Q_UINT16 qChecksum( const char *data, uint len )
}
/*!
\fn QByteArray qCompress( const QByteArray& data )
\fn QByteArray tqCompress( const QByteArray& data )
\relates QByteArray
@ -355,7 +355,7 @@ Q_UINT16 qChecksum( const char *data, uint len )
*/
#ifndef QT_NO_COMPRESS
QByteArray qCompress( const uchar* data, int nbytes )
QByteArray tqCompress( const uchar* data, int nbytes )
{
if ( nbytes == 0 ) {
QByteArray tmp( 4 );
@ -364,7 +364,7 @@ QByteArray qCompress( const uchar* data, int nbytes )
}
if ( !data ) {
#if defined(QT_CHECK_RANGE)
qWarning( "qCompress: data is NULL." );
tqWarning( "qCompress: data is NULL." );
#endif
return QByteArray();
}
@ -386,7 +386,7 @@ QByteArray qCompress( const uchar* data, int nbytes )
break;
case Z_MEM_ERROR:
#if defined(QT_CHECK_RANGE)
qWarning( "qCompress: Z_MEM_ERROR: Not enough memory." );
tqWarning( "qCompress: Z_MEM_ERROR: Not enough memory." );
#endif
bazip.resize( 0 );
break;
@ -411,12 +411,12 @@ QByteArray qCompress( const uchar* data, int nbytes )
Returns an empty QByteArray if the input data was corrupt.
\omit
ADD THE FOLLOWING FOR Qt 4.0
This function will uncompress data compressed with qCompress()
This function will uncompress data compressed with tqCompress()
from this and any earlier Qt version, back to Qt 3.1 when this
feature was added.
\endomit
\sa qCompress()
\sa tqCompress()
*/
/*!
@ -433,14 +433,14 @@ QByteArray qUncompress( const uchar* data, int nbytes )
{
if ( !data ) {
#if defined(QT_CHECK_RANGE)
qWarning( "qUncompress: data is NULL." );
tqWarning( "qUncompress: data is NULL." );
#endif
return QByteArray();
}
if ( nbytes <= 4 ) {
#if defined(QT_CHECK_RANGE)
if ( nbytes < 4 || ( data[0]!=0 || data[1]!=0 || data[2]!=0 || data[3]!=0 ) )
qWarning( "qUncompress: Input data is corrupted." );
tqWarning( "qUncompress: Input data is corrupted." );
#endif
return QByteArray();
}
@ -463,7 +463,7 @@ QByteArray qUncompress( const uchar* data, int nbytes )
break;
case Z_MEM_ERROR:
#if defined(QT_CHECK_RANGE)
qWarning( "qUncompress: Z_MEM_ERROR: Not enough memory." );
tqWarning( "qUncompress: Z_MEM_ERROR: Not enough memory." );
#endif
break;
case Z_BUF_ERROR:
@ -471,7 +471,7 @@ QByteArray qUncompress( const uchar* data, int nbytes )
break;
case Z_DATA_ERROR:
#if defined(QT_CHECK_RANGE)
qWarning( "qUncompress: Z_DATA_ERROR: Input data is corrupted." );
tqWarning( "qUncompress: Z_DATA_ERROR: Input data is corrupted." );
#endif
break;
}
@ -552,7 +552,7 @@ QDataStream &operator>>( QDataStream &s, QByteArray &a )
}
if ( !a.resize( (uint)len ) ) { // resize array
#if defined(QT_CHECK_NULL)
qWarning( "QDataStream: Not enough memory to read QByteArray" );
tqWarning( "QDataStream: Not enough memory to read QByteArray" );
#endif
len = 0;
}
@ -1031,7 +1031,7 @@ int QCString::find( const char *str, int index, bool cs, uint l ) const
while ( haystack <= end ) {
hashHaystack += tolower(*(haystack+sl_minus_1));
if ( hashHaystack == hashNeedle
&& qstrnicmp( needle, haystack, sl ) == 0 )
&& tqstrnicmp( needle, haystack, sl ) == 0 )
return haystack - data();
REHASH( tolower(*haystack) );
@ -1136,7 +1136,7 @@ int QCString::findRev( const char *str, int index, bool cs ) const
hashHaystack -= tolower(*haystack);
while ( haystack >= end ) {
hashHaystack += tolower(*haystack);
if ( hashHaystack == hashNeedle && qstrnicmp( needle, haystack, sl ) == 0 )
if ( hashHaystack == hashNeedle && tqstrnicmp( needle, haystack, sl ) == 0 )
return haystack-data();
--haystack;
REHASH( tolower(*(haystack+sl)) );
@ -2192,7 +2192,7 @@ QCString &QCString::setNum( double n, char f, int prec )
{
#if defined(QT_CHECK_RANGE)
if ( !(f=='f' || f=='F' || f=='e' || f=='E' || f=='g' || f=='G') )
qWarning( "QCString::setNum: Invalid format char '%c'", f );
tqWarning( "QCString::setNum: Invalid format char '%c'", f );
#endif
char format[20];
register char *fs = format; // generate format string
@ -2323,7 +2323,7 @@ QDataStream &operator>>( QDataStream &s, QCString &str )
}
if ( !str.QByteArray::resize( (uint)len )) {// resize string
#if defined(QT_CHECK_NULL)
qWarning( "QDataStream: Not enough memory to read QCString" );
tqWarning( "QDataStream: Not enough memory to read QCString" );
#endif
len = 0;
}

@ -53,9 +53,9 @@
Safe and portable C string functions; extensions to standard string.h
*****************************************************************************/
Q_EXPORT void *qmemmove( void *dst, const void *src, uint len );
Q_EXPORT void *tqmemmove( void *dst, const void *src, uint len );
Q_EXPORT char *qstrdup( const char * );
Q_EXPORT char *tqstrdup( const char * );
Q_EXPORT inline uint qstrlen( const char *str )
{ return str ? (uint)strlen(str) : 0u; }
@ -63,7 +63,7 @@ Q_EXPORT inline uint qstrlen( const char *str )
Q_EXPORT inline char *qstrcpy( char *dst, const char *src )
{ return src ? strcpy(dst, src) : 0; }
Q_EXPORT char *qstrncpy( char *dst, const char *src, uint len );
Q_EXPORT char *tqstrncpy( char *dst, const char *src, uint len );
Q_EXPORT inline int qstrcmp( const char *str1, const char *str2 )
{
@ -77,9 +77,9 @@ Q_EXPORT inline int qstrncmp( const char *str1, const char *str2, uint len )
: ( str1 ? 1 : ( str2 ? -1 : 0 ) );
}
Q_EXPORT int qstricmp( const char *, const char * );
Q_EXPORT int tqstricmp( const char *, const char * );
Q_EXPORT int qstrnicmp( const char *, const char *, uint len );
Q_EXPORT int tqstrnicmp( const char *, const char *, uint len );
#ifndef QT_CLEAN_NAMESPACE
Q_EXPORT inline uint cstrlen( const char *str )
@ -96,9 +96,9 @@ Q_EXPORT inline int cstrncmp( const char *str1, const char *str2, uint len )
#endif
// qChecksum: Internet checksum
// tqChecksum: Internet checksum
Q_EXPORT Q_UINT16 qChecksum( const char *s, uint len );
Q_EXPORT Q_UINT16 tqChecksum( const char *s, uint len );
/*****************************************************************************
QByteArray class
@ -120,10 +120,10 @@ typedef QMemArray<char> QByteArray;
#endif
#ifndef QT_NO_COMPRESS
Q_EXPORT QByteArray qCompress( const uchar* data, int nbytes );
Q_EXPORT QByteArray tqCompress( const uchar* data, int nbytes );
Q_EXPORT QByteArray qUncompress( const uchar* data, int nbytes );
Q_EXPORT inline QByteArray qCompress( const QByteArray& data)
{ return qCompress( (const uchar*)data.data(), data.size() ); }
Q_EXPORT inline QByteArray tqCompress( const QByteArray& data)
{ return tqCompress( (const uchar*)data.data(), data.size() ); }
Q_EXPORT inline QByteArray qUncompress( const QByteArray& data )
{ return qUncompress( (const uchar*)data.data(), data.size() ); }
#endif

@ -219,7 +219,7 @@
#if defined(QT_CHECK_STATE)
#undef CHECK_STREAM_PRECOND
#define CHECK_STREAM_PRECOND if ( !dev ) { \
qWarning( "QDataStream: No device" ); \
tqWarning( "QDataStream: No device" ); \
return *this; }
#else
#define CHECK_STREAM_PRECOND
@ -248,7 +248,7 @@ static const int DefaultStreamVersion = 6;
QDataStream::QDataStream()
{
if ( systemWordSize == 0 ) // get system features
qSysInfo( &systemWordSize, &systemBigEndian );
tqSysInfo( &systemWordSize, &systemBigEndian );
dev = 0; // no device set
owndev = FALSE;
byteorder = BigEndian; // default byte order
@ -272,7 +272,7 @@ QDataStream::QDataStream()
QDataStream::QDataStream( QIODevice *d )
{
if ( systemWordSize == 0 ) // get system features
qSysInfo( &systemWordSize, &systemBigEndian );
tqSysInfo( &systemWordSize, &systemBigEndian );
dev = d; // set device
owndev = FALSE;
byteorder = BigEndian; // default byte order
@ -303,7 +303,7 @@ QDataStream::QDataStream( QIODevice *d )
QDataStream::QDataStream( QByteArray a, int mode )
{
if ( systemWordSize == 0 ) // get system features
qSysInfo( &systemWordSize, &systemBigEndian );
tqSysInfo( &systemWordSize, &systemBigEndian );
dev = new QBuffer( a ); // create device
((QBuffer *)dev)->open( mode ); // open device
owndev = TRUE;

@ -513,7 +513,7 @@ QString QDate::shortMonthName( int month )
{
#if defined(QT_CHECK_RANGE)
if ( month < 1 || month > 12 ) {
qWarning( "QDate::shortMonthName: Parameter out ouf range" );
tqWarning( "QDate::shortMonthName: Parameter out ouf range" );
month = 1;
}
#endif
@ -559,7 +559,7 @@ QString QDate::longMonthName( int month )
{
#if defined(QT_CHECK_RANGE)
if ( month < 1 || month > 12 ) {
qWarning( "QDate::longMonthName: Parameter out ouf range" );
tqWarning( "QDate::longMonthName: Parameter out ouf range" );
month = 1;
}
#endif
@ -613,7 +613,7 @@ QString QDate::shortDayName( int weekday )
{
#if defined(QT_CHECK_RANGE)
if ( weekday < 1 || weekday > 7 ) {
qWarning( "QDate::shortDayName: Parameter out of range" );
tqWarning( "QDate::shortDayName: Parameter out of range" );
weekday = 1;
}
#endif
@ -661,7 +661,7 @@ QString QDate::longDayName( int weekday )
{
#if defined(QT_CHECK_RANGE)
if ( weekday < 1 || weekday > 7 ) {
qWarning( "QDate::longDayName: Parameter out of range" );
tqWarning( "QDate::longDayName: Parameter out of range" );
weekday = 1;
}
#endif
@ -850,7 +850,7 @@ bool QDate::setYMD( int y, int m, int d )
return isValid();
if ( !isValid(y,m,d) ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QDate::setYMD: Invalid date %04d-%02d-%02d", y, m, d );
tqWarning( "QDate::setYMD: Invalid date %04d-%02d-%02d", y, m, d );
#endif
return FALSE;
}
@ -1073,7 +1073,7 @@ QDate QDate::fromString( const QString& s, Qt::DateFormat f )
{
if ( ( s.isEmpty() ) || ( f == Qt::LocalDate ) ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QDate::fromString: Parameter out of range" );
tqWarning( "QDate::fromString: Parameter out of range" );
#endif
QDate d;
d.jd = 0;
@ -1122,7 +1122,7 @@ QDate QDate::fromString( const QString& s, Qt::DateFormat f )
}
#if defined(QT_CHECK_RANGE)
if ( month < 1 || month > 12 ) {
qWarning( "QDate::fromString: Parameter out of range" );
tqWarning( "QDate::fromString: Parameter out of range" );
QDate d;
d.jd = 0;
return d;
@ -1493,7 +1493,7 @@ bool QTime::setHMS( int h, int m, int s, int ms )
{
if ( !isValid(h,m,s,ms) ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QTime::setHMS Invalid time %02d:%02d:%02d.%03d", h, m, s,
tqWarning( "QTime::setHMS Invalid time %02d:%02d:%02d.%03d", h, m, s,
ms );
#endif
ds = MSECS_PER_DAY; // make this invalid
@ -1664,7 +1664,7 @@ QTime QTime::fromString( const QString& s, Qt::DateFormat f )
{
if ( ( s.isEmpty() ) || ( f == Qt::LocalDate ) ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QTime::fromString: Parameter out of range" );
tqWarning( "QTime::fromString: Parameter out of range" );
#endif
QTime t;
t.ds = MSECS_PER_DAY;
@ -1708,7 +1708,7 @@ bool QTime::currentTime( QTime *ct, Qt::TimeSpec ts )
{
if ( !ct ) {
#if defined(QT_CHECK_NULL)
qWarning( "QTime::currentTime(QTime *): Null pointer not allowed" );
tqWarning( "QTime::currentTime(QTime *): Null pointer not allowed" );
#endif
return FALSE;
}
@ -1789,7 +1789,7 @@ bool QTime::isValid( int h, int m, int s, int ms )
QTime t;
t.start();
some_lengthy_task();
qDebug( "Time elapsed: %d ms", t.elapsed() );
tqDebug( "Time elapsed: %d ms", t.elapsed() );
\endcode
\sa restart(), elapsed(), currentTime()
@ -2320,7 +2320,7 @@ int QDateTime::daysTo( const QDateTime &dt ) const
\code
QDateTime dt = QDateTime::currentDateTime();
QDateTime xmas( QDate(dt.date().year(),12,24), QTime(17,00) );
qDebug( "There are %d seconds to Christmas", dt.secsTo(xmas) );
tqDebug( "There are %d seconds to Christmas", dt.secsTo(xmas) );
\endcode
\sa addSecs(), daysTo(), QTime::secsTo()
@ -2449,7 +2449,7 @@ QDateTime QDateTime::fromString( const QString& s, Qt::DateFormat f )
{
if ( ( s.isEmpty() ) || ( f == Qt::LocalDate ) ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QDateTime::fromString: Parameter out of range" );
tqWarning( "QDateTime::fromString: Parameter out of range" );
#endif
QDateTime dt;
dt.d.jd = 0;
@ -2482,7 +2482,7 @@ QDateTime QDateTime::fromString( const QString& s, Qt::DateFormat f )
}
#if defined(QT_CHECK_RANGE)
if ( month < 1 || month > 12 ) {
qWarning( "QDateTime::fromString: Parameter out of range" );
tqWarning( "QDateTime::fromString: Parameter out of range" );
QDateTime dt;
dt.d.jd = 0;
return dt;

@ -132,18 +132,18 @@ const bool CaseSensitiveFS = TRUE;
\code
QDir d( "example" ); // "./example"
if ( !d.exists() )
qWarning( "Cannot find the example directory" );
tqWarning( "Cannot find the example directory" );
\endcode
Traversing directories and reading a file.
\code
QDir d = QDir::root(); // "/"
if ( !d.cd("tmp") ) { // "/tmp"
qWarning( "Cannot find the \"/tmp\" directory" );
tqWarning( "Cannot find the \"/tmp\" directory" );
} else {
QFile f( d.filePath("ex1.txt") ); // "/tmp/ex1.txt"
if ( !f.open(IO_ReadWrite) )
qWarning( "Cannot create the file %s", f.name() );
tqWarning( "Cannot create the file %s", f.name() );
}
\endcode
@ -1005,7 +1005,7 @@ QDir &QDir::operator=( const QString &path )
QDir d1( "/usr/local/bin" );
QDir d2( "bin" );
if ( d1 != d2 )
qDebug( "They differ" );
tqDebug( "They differ" );
\endcode
*/
@ -1021,7 +1021,7 @@ QDir &QDir::operator=( const QString &path )
QDir d2( "bin" );
d2.convertToAbs();
if ( d1 == d2 )
qDebug( "They're the same" );
tqDebug( "They're the same" );
\endcode
*/
@ -1051,7 +1051,7 @@ bool QDir::remove( const QString &fileName, bool acceptAbsPath )
{
if ( fileName.isEmpty() ) {
#if defined(QT_CHECK_NULL)
qWarning( "QDir::remove: Empty or null file name" );
tqWarning( "QDir::remove: Empty or null file name" );
#endif
return FALSE;
}
@ -1076,7 +1076,7 @@ bool QDir::exists( const QString &name, bool acceptAbsPath ) //### const in 4.0
{
if ( name.isEmpty() ) {
#if defined(QT_CHECK_NULL)
qWarning( "QDir::exists: Empty or null file name" );
tqWarning( "QDir::exists: Empty or null file name" );
#endif
return FALSE;
}

@ -142,7 +142,7 @@ bool QDir::rename( const QString &name, const QString &newName,
{
if ( name.isEmpty() || newName.isEmpty() ) {
#if defined(QT_CHECK_NULL)
qWarning( "QDir::rename: Empty or null file name(s)" );
tqWarning( "QDir::rename: Empty or null file name(s)" );
#endif
return FALSE;
}
@ -178,11 +178,11 @@ QString QDir::currentDirPath()
#endif /* __GLIBC__ && !PATH_MAX */
#if defined(QT_DEBUG)
if ( result.isNull() )
qWarning( "QDir::currentDirPath: getcwd() failed" );
tqWarning( "QDir::currentDirPath: getcwd() failed" );
#endif
} else {
#if defined(QT_DEBUG)
qWarning( "QDir::currentDirPath: stat(\".\") failed" );
tqWarning( "QDir::currentDirPath: stat(\".\") failed" );
#endif
}
slashify( result );
@ -269,7 +269,7 @@ bool QDir::readDirEntries( const QString &nameFilter,
}
if ( closedir(dir) != 0 ) {
#if defined(QT_CHECK_NULL)
qWarning( "QDir::readDirEntries: Cannot close the directory: %s",
tqWarning( "QDir::readDirEntries: Cannot close the directory: %s",
dPath.local8Bit().data() );
#endif
}

@ -247,7 +247,7 @@ void QFile::setName( const QString &name )
{
if ( isOpen() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QFile::setName: File is open" );
tqWarning( "QFile::setName: File is open" );
#endif
close();
}
@ -336,7 +336,7 @@ bool QFile::atEnd() const
{
if ( !isOpen() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QFile::atEnd: File is not open" );
tqWarning( "QFile::atEnd: File is not open" );
#endif
return FALSE;
}
@ -373,11 +373,11 @@ Q_LONG QFile::readLine( char *p, Q_ULONG maxlen )
#if defined(QT_CHECK_STATE)
Q_CHECK_PTR( p );
if ( !isOpen() ) { // file not open
qWarning( "QFile::readLine: File not open" );
tqWarning( "QFile::readLine: File not open" );
return -1;
}
if ( !isReadable() ) { // reading not permitted
qWarning( "QFile::readLine: Read operation not permitted" );
tqWarning( "QFile::readLine: Read operation not permitted" );
return -1;
}
#endif
@ -444,11 +444,11 @@ int QFile::getch()
{
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) { // file not open
qWarning( "QFile::getch: File not open" );
tqWarning( "QFile::getch: File not open" );
return EOF;
}
if ( !isReadable() ) { // reading not permitted
qWarning( "QFile::getch: Read operation not permitted" );
tqWarning( "QFile::getch: Read operation not permitted" );
return EOF;
}
#endif
@ -489,11 +489,11 @@ int QFile::putch( int ch )
{
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) { // file not open
qWarning( "QFile::putch: File not open" );
tqWarning( "QFile::putch: File not open" );
return EOF;
}
if ( !isWritable() ) { // writing not permitted
qWarning( "QFile::putch: Write operation not permitted" );
tqWarning( "QFile::putch: Write operation not permitted" );
return EOF;
}
#endif
@ -530,11 +530,11 @@ int QFile::ungetch( int ch )
{
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) { // file not open
qWarning( "QFile::ungetch: File not open" );
tqWarning( "QFile::ungetch: File not open" );
return EOF;
}
if ( !isReadable() ) { // reading not permitted
qWarning( "QFile::ungetch: Read operation not permitted" );
tqWarning( "QFile::ungetch: Read operation not permitted" );
return EOF;
}
#endif

@ -75,7 +75,7 @@ bool QFile::remove( const QString &fileName )
{
if ( fileName.isEmpty() ) {
#if defined(QT_CHECK_NULL)
qWarning( "QFile::remove: Empty or null file name" );
tqWarning( "QFile::remove: Empty or null file name" );
#endif
return FALSE;
}
@ -168,13 +168,13 @@ bool QFile::open( int m )
{
if ( isOpen() ) { // file already open
#if defined(QT_CHECK_STATE)
qWarning( "QFile::open: File already open" );
tqWarning( "QFile::open: File already open" );
#endif
return FALSE;
}
if ( fn.isEmpty() ) { // no file name defined
#if defined(QT_CHECK_NULL)
qWarning( "QFile::open: No file name specified" );
tqWarning( "QFile::open: No file name specified" );
#endif
return FALSE;
}
@ -182,7 +182,7 @@ bool QFile::open( int m )
setMode( m );
if ( !(isReadable() || isWritable()) ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QFile::open: File access not specified" );
tqWarning( "QFile::open: File access not specified" );
#endif
return FALSE;
}
@ -340,7 +340,7 @@ bool QFile::open( int m, FILE *f )
{
if ( isOpen() ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QFile::open: File already open" );
tqWarning( "QFile::open: File already open" );
#endif
return FALSE;
}
@ -412,7 +412,7 @@ bool QFile::open( int m, int f )
{
if ( isOpen() ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QFile::open: File already open" );
tqWarning( "QFile::open: File already open" );
#endif
return FALSE;
}
@ -508,7 +508,7 @@ bool QFile::at( Offset pos )
{
if ( !isOpen() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QFile::at: File is not open" );
tqWarning( "QFile::at: File is not open" );
#endif
return FALSE;
}
@ -535,9 +535,9 @@ bool QFile::at( Offset pos )
#if defined(QT_CHECK_RANGE)
else
#if defined(QT_ABI_QT4)
qWarning( "QFile::at: Cannot set file position %lld", pos );
tqWarning( "QFile::at: Cannot set file position %lld", pos );
#else
qWarning( "QFile::at: Cannot set file position %lu", pos );
tqWarning( "QFile::at: Cannot set file position %lu", pos );
#endif
#endif
return ok;
@ -560,15 +560,15 @@ Q_LONG QFile::readBlock( char *p, Q_ULONG len )
#if defined(QT_CHECK_NULL)
if ( !p )
qWarning( "QFile::readBlock: Null pointer error" );
tqWarning( "QFile::readBlock: Null pointer error" );
#endif
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) {
qWarning( "QFile::readBlock: File not open" );
tqWarning( "QFile::readBlock: File not open" );
return -1;
}
if ( !isReadable() ) {
qWarning( "QFile::readBlock: Read operation not permitted" );
tqWarning( "QFile::readBlock: Read operation not permitted" );
return -1;
}
#endif
@ -629,15 +629,15 @@ Q_LONG QFile::writeBlock( const char *p, Q_ULONG len )
#if defined(QT_CHECK_NULL)
if ( p == 0 && len != 0 )
qWarning( "QFile::writeBlock: Null pointer error" );
tqWarning( "QFile::writeBlock: Null pointer error" );
#endif
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) { // file not open
qWarning( "QFile::writeBlock: File not open" );
tqWarning( "QFile::writeBlock: File not open" );
return -1;
}
if ( !isWritable() ) { // writing not permitted
qWarning( "QFile::writeBlock: Write operation not permitted" );
tqWarning( "QFile::writeBlock: Write operation not permitted" );
return -1;
}
#endif

@ -277,9 +277,9 @@ uint QFileInfo::groupId() const
\code
QFileInfo fi( "/tmp/archive.tar.gz" );
if ( fi.permission( QFileInfo::WriteUser | QFileInfo::ReadGroup ) )
qWarning( "I can change the file; my group can read the file" );
tqWarning( "I can change the file; my group can read the file" );
if ( fi.permission( QFileInfo::WriteGroup | QFileInfo::WriteOther ) )
qWarning( "The group or others can change the file" );
tqWarning( "The group or others can change the file" );
\endcode
\sa isReadable(), isWritable(), isExecutable()
@ -319,7 +319,7 @@ bool QFileInfo::permission( int permissionSpec ) const
return (fic->st.st_mode & mask) == mask;
} else {
#if defined(QT_CHECK_NULL)
qWarning( "QFileInfo::permission: permissionSpec is 0" );
tqWarning( "QFileInfo::permission: permissionSpec is 0" );
#endif
return TRUE;
}

@ -138,7 +138,7 @@ QGArray::QGArray( int size )
{
if ( size < 0 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QGArray: Cannot allocate array with negative length" );
tqWarning( "QGArray: Cannot allocate array with negative length" );
#endif
size = 0;
}
@ -578,7 +578,7 @@ void QGArray::resetRawData( const char *d, uint len )
{
if ( d != shd->data || len != shd->len ) {
#if defined(QT_CHECK_STATE)
qWarning( "QGArray::resetRawData: Inconsistent arguments" );
tqWarning( "QGArray::resetRawData: Inconsistent arguments" );
#endif
return;
}
@ -601,7 +601,7 @@ int QGArray::find( const char *d, uint index, uint sz ) const
index *= sz;
if ( index >= shd->len ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QGArray::find: Index %d out of range", index/sz );
tqWarning( "QGArray::find: Index %d out of range", index/sz );
#endif
return -1;
}
@ -803,7 +803,7 @@ bool QGArray::setExpand( uint index, const char *d, uint sz )
void QGArray::msg_index( uint index )
{
#if defined(QT_CHECK_RANGE)
qWarning( "QGArray::at: Absolute index %d out of range", index );
tqWarning( "QGArray::at: Absolute index %d out of range", index );
#else
Q_UNUSED( index )
#endif

@ -283,7 +283,7 @@ QGCache::QGCache( const QGCache & )
: QPtrCollection()
{
#if defined(QT_CHECK_NULL)
qFatal( "QGCache::QGCache(QGCache &): Cannot copy a cache" );
tqFatal( "QGCache::QGCache(QGCache &): Cannot copy a cache" );
#endif
}
@ -305,7 +305,7 @@ QGCache::~QGCache()
QGCache &QGCache::operator=( const QGCache & )
{
#if defined(QT_CHECK_NULL)
qFatal( "QGCache::operator=: Cannot copy a cache" );
tqFatal( "QGCache::operator=: Cannot copy a cache" );
#endif
return *this;
}
@ -413,7 +413,7 @@ bool QGCache::insert_other( const char *key, QPtrCollection::Item data,
lruList->insertCosts += cost;
#endif
if ( keytype == AsciiKey && copyk )
key = qstrdup( key );
key = tqstrdup( key );
if ( priority < -32768 )
priority = -32768;
else if ( priority > 32767 )
@ -641,28 +641,28 @@ void QGCache::statistics() const
#if defined(QT_DEBUG)
QString line;
line.fill( '*', 80 );
qDebug( "%s", line.ascii() );
qDebug( "CACHE STATISTICS:" );
qDebug( "cache contains %d item%s, with a total cost of %d",
tqDebug( "%s", line.ascii() );
tqDebug( "CACHE STATISTICS:" );
tqDebug( "cache contains %d item%s, with a total cost of %d",
count(), count() != 1 ? "s" : "", tCost );
qDebug( "maximum cost is %d, cache is %d%% full.",
tqDebug( "maximum cost is %d, cache is %d%% full.",
mCost, (200*tCost + mCost) / (mCost*2) );
qDebug( "find() has been called %d time%s",
tqDebug( "find() has been called %d time%s",
lruList->finds, lruList->finds != 1 ? "s" : "" );
qDebug( "%d of these were hits, items found had a total cost of %d.",
tqDebug( "%d of these were hits, items found had a total cost of %d.",
lruList->hits,lruList->hitCosts );
qDebug( "%d item%s %s been inserted with a total cost of %d.",
tqDebug( "%d item%s %s been inserted with a total cost of %d.",
lruList->inserts,lruList->inserts != 1 ? "s" : "",
lruList->inserts != 1 ? "have" : "has", lruList->insertCosts );
qDebug( "%d item%s %s too large or had too low priority to be inserted.",
tqDebug( "%d item%s %s too large or had too low priority to be inserted.",
lruList->insertMisses, lruList->insertMisses != 1 ? "s" : "",
lruList->insertMisses != 1 ? "were" : "was" );
qDebug( "%d item%s %s been thrown away with a total cost of %d.",
tqDebug( "%d item%s %s been thrown away with a total cost of %d.",
lruList->dumps, lruList->dumps != 1 ? "s" : "",
lruList->dumps != 1 ? "have" : "has", lruList->dumpCosts );
qDebug( "Statistics from internal dictionary class:" );
tqDebug( "Statistics from internal dictionary class:" );
dict->statistics();
qDebug( "%s", line.ascii() );
tqDebug( "%s", line.ascii() );
#endif
}

@ -92,7 +92,7 @@ int QGDict::hashKeyString( const QString &key )
{
#if defined(QT_CHECK_NULL)
if ( key.isNull() )
qWarning( "QGDict::hashKeyString: Invalid null key" );
tqWarning( "QGDict::hashKeyString: Invalid null key" );
#endif
int i;
register uint h=0;
@ -127,7 +127,7 @@ int QGDict::hashKeyAscii( const char *key )
{
#if defined(QT_CHECK_NULL)
if ( key == 0 )
qWarning( "QGDict::hashAsciiKey: Invalid null key" );
tqWarning( "QGDict::hashAsciiKey: Invalid null key" );
#endif
register const char *k = key;
register uint h=0;
@ -361,7 +361,7 @@ QPtrCollection::Item QGDict::look_string( const QString &key, QPtrCollection::It
Q_CHECK_PTR( n );
#if defined(QT_CHECK_NULL)
if ( n->getData() == 0 )
qWarning( "QDict: Cannot insert null item" );
tqWarning( "QDict: Cannot insert null item" );
#endif
vec[index] = n;
numItems++;
@ -382,7 +382,7 @@ QPtrCollection::Item QGDict::look_ascii( const char *key, QPtrCollection::Item d
} else {
for ( n=(QAsciiBucket*)vec[index]; n;
n=(QAsciiBucket*)n->getNext() ) {
if ( qstricmp(n->getKey(),key) == 0 )
if ( tqstricmp(n->getKey(),key) == 0 )
return n->getData(); // item found
}
}
@ -393,11 +393,11 @@ QPtrCollection::Item QGDict::look_ascii( const char *key, QPtrCollection::Item d
remove_ascii( key );
}
// op_insert or op_replace
n = new QAsciiBucket(copyk ? qstrdup(key) : key,newItem(d),vec[index]);
n = new QAsciiBucket(copyk ? tqstrdup(key) : key,newItem(d),vec[index]);
Q_CHECK_PTR( n );
#if defined(QT_CHECK_NULL)
if ( n->getData() == 0 )
qWarning( "QAsciiDict: Cannot insert null item" );
tqWarning( "QAsciiDict: Cannot insert null item" );
#endif
vec[index] = n;
numItems++;
@ -425,7 +425,7 @@ QPtrCollection::Item QGDict::look_int( long key, QPtrCollection::Item d, int op
Q_CHECK_PTR( n );
#if defined(QT_CHECK_NULL)
if ( n->getData() == 0 )
qWarning( "QIntDict: Cannot insert null item" );
tqWarning( "QIntDict: Cannot insert null item" );
#endif
vec[index] = n;
numItems++;
@ -453,7 +453,7 @@ QPtrCollection::Item QGDict::look_ptr( void *key, QPtrCollection::Item d, int op
Q_CHECK_PTR( n );
#if defined(QT_CHECK_NULL)
if ( n->getData() == 0 )
qWarning( "QPtrDict: Cannot insert null item" );
tqWarning( "QPtrDict: Cannot insert null item" );
#endif
vec[index] = n;
numItems++;
@ -610,7 +610,7 @@ QAsciiBucket *QGDict::unlink_ascii( const char *key, QPtrCollection::Item d )
int index = hashKeyAscii(key) % vlen;
for ( n=(QAsciiBucket *)vec[index]; n; n=(QAsciiBucket *)n->getNext() ) {
bool found = (cases ? qstrcmp(n->getKey(),key)
: qstricmp(n->getKey(),key)) == 0;
: tqstricmp(n->getKey(),key)) == 0;
if ( found && d )
found = (n->getData() == d);
if ( found ) {
@ -846,11 +846,11 @@ void QGDict::statistics() const
QString line;
line.fill( '-', 60 );
double real, ideal;
qDebug( "%s", line.ascii() );
qDebug( "DICTIONARY STATISTICS:" );
tqDebug( "%s", line.ascii() );
tqDebug( "DICTIONARY STATISTICS:" );
if ( count() == 0 ) {
qDebug( "Empty!" );
qDebug( "%s", line.ascii() );
tqDebug( "Empty!" );
tqDebug( "%s", line.ascii() );
return;
}
real = 0.0;
@ -871,15 +871,15 @@ void QGDict::statistics() const
while ( b-- )
*pbuf++ = '*';
*pbuf = '\0';
qDebug( "%s", buf );
tqDebug( "%s", buf );
i++;
}
qDebug( "Array size = %d", size() );
qDebug( "# items = %d", count() );
qDebug( "Real dist = %g", real );
qDebug( "Rand dist = %g", ideal );
qDebug( "Real/Rand = %g", real/ideal );
qDebug( "%s", line.ascii() );
tqDebug( "Array size = %d", size() );
tqDebug( "# items = %d", count() );
tqDebug( "Real dist = %g", real );
tqDebug( "Rand dist = %g", ideal );
tqDebug( "Real/Rand = %g", real/ideal );
tqDebug( "%s", line.ascii() );
#endif // QT_DEBUG
}
@ -1072,7 +1072,7 @@ QPtrCollection::Item QGDictIterator::toFirst()
{
if ( !dict ) {
#if defined(QT_CHECK_NULL)
qWarning( "QGDictIterator::toFirst: Dictionary has been deleted" );
tqWarning( "QGDictIterator::toFirst: Dictionary has been deleted" );
#endif
return 0;
}
@ -1098,7 +1098,7 @@ QPtrCollection::Item QGDictIterator::operator()()
{
if ( !dict ) {
#if defined(QT_CHECK_NULL)
qWarning( "QGDictIterator::operator(): Dictionary has been deleted" );
tqWarning( "QGDictIterator::operator(): Dictionary has been deleted" );
#endif
return 0;
}
@ -1117,7 +1117,7 @@ QPtrCollection::Item QGDictIterator::operator++()
{
if ( !dict ) {
#if defined(QT_CHECK_NULL)
qWarning( "QGDictIterator::operator++: Dictionary has been deleted" );
tqWarning( "QGDictIterator::operator++: Dictionary has been deleted" );
#endif
return 0;
}

@ -516,7 +516,7 @@ bool QGList::removeNode( QLNode *n )
#if defined(QT_CHECK_NULL)
if ( n == 0 || (n->prev && n->prev->next != n) ||
(n->next && n->next->prev != n) ) {
qWarning( "QGList::removeNode: Corrupted node" );
tqWarning( "QGList::removeNode: Corrupted node" );
return FALSE;
}
#endif
@ -618,7 +618,7 @@ QPtrCollection::Item QGList::takeNode( QLNode *n )
#if defined(QT_CHECK_NULL)
if ( n == 0 || (n->prev && n->prev->next != n) ||
(n->next && n->next->prev != n) ) {
qWarning( "QGList::takeNode: Corrupted node" );
tqWarning( "QGList::takeNode: Corrupted node" );
return 0;
}
#endif
@ -1171,7 +1171,7 @@ QPtrCollection::Item QGListIterator::toFirst()
{
if ( !list ) {
#if defined(QT_CHECK_NULL)
qWarning( "QGListIterator::toFirst: List has been deleted" );
tqWarning( "QGListIterator::toFirst: List has been deleted" );
#endif
return 0;
}
@ -1187,7 +1187,7 @@ QPtrCollection::Item QGListIterator::toLast()
{
if ( !list ) {
#if defined(QT_CHECK_NULL)
qWarning( "QGListIterator::toLast: List has been deleted" );
tqWarning( "QGListIterator::toLast: List has been deleted" );
#endif
return 0;
}

@ -63,12 +63,12 @@
3.0.5's \c QT_VERSION is 0x030005.
*/
const char *qVersion()
const char *tqVersion()
{
return QT_VERSION_STR;
}
bool qSharedBuild()
bool tqSharedBuild()
{
#ifdef QT_SHARED
return TRUE;
@ -94,12 +94,12 @@ static bool si_bigEndian;
*wordSize. The \a *bigEndian is set to TRUE if this is a big-endian
machine, or to FALSE if this is a little-endian machine.
In debug mode, this function calls qFatal() with a message if the
In debug mode, this function calls tqFatal() with a message if the
computer is truly weird (i.e. different endianness for 16 bit and
32 bit integers); in release mode it returns FALSE.
*/
bool qSysInfo( int *wordSize, bool *bigEndian )
bool tqSysInfo( int *wordSize, bool *bigEndian )
{
#if defined(QT_CHECK_NULL)
Q_ASSERT( wordSize != 0 );
@ -124,14 +124,14 @@ bool qSysInfo( int *wordSize, bool *bigEndian )
*wordSize != 32 &&
*wordSize != 16 ) { // word size: 16, 32 or 64
#if defined(QT_CHECK_RANGE)
qFatal( "qSysInfo: Unsupported system word size %d", *wordSize );
tqFatal( "qSysInfo: Unsupported system word size %d", *wordSize );
#endif
return FALSE;
}
if ( sizeof(Q_INT8) != 1 || sizeof(Q_INT16) != 2 || sizeof(Q_INT32) != 4 ||
sizeof(Q_ULONG)*8 != si_wordSize || sizeof(float) != 4 || sizeof(double) != 8 ) {
#if defined(QT_CHECK_RANGE)
qFatal( "qSysInfo: Unsupported system data type size" );
tqFatal( "qSysInfo: Unsupported system data type size" );
#endif
return FALSE;
}
@ -154,7 +154,7 @@ bool qSysInfo( int *wordSize, bool *bigEndian )
if ( be16 != be32 ) { // strange machine!
#if defined(QT_CHECK_RANGE)
qFatal( "qSysInfo: Inconsistent system byte order" );
tqFatal( "qSysInfo: Inconsistent system byte order" );
#endif
return FALSE;
}
@ -321,7 +321,7 @@ int qWinVersion()
} else if ( osver.dwMinorVersion == 2 ) {
winver = Qt::WV_2003;
} else {
qWarning("Untested Windows version detected!");
tqWarning("Untested Windows version detected!");
winver = Qt::WV_NT_based;
}
}
@ -346,7 +346,7 @@ Qt::WindowsVersion qt_winver = (Qt::WindowsVersion)qWinVersion();
*****************************************************************************/
/*!
\fn void qDebug( const char *msg, ... )
\fn void tqDebug( const char *msg, ... )
\relates QApplication
@ -358,7 +358,7 @@ Qt::WindowsVersion qt_winver = (Qt::WindowsVersion)qWinVersion();
Example:
\code
qDebug( "my window handle = %x", myWidget->id() );
tqDebug( "my window handle = %x", myWidget->id() );
\endcode
Under X11, the text is printed to stderr. Under Windows, the text
@ -367,15 +367,15 @@ Qt::WindowsVersion qt_winver = (Qt::WindowsVersion)qWinVersion();
\warning The internal buffer is limited to 8196 bytes (including
the '\0'-terminator).
\warning Passing (const char *)0 as argument to qDebug might lead
\warning Passing (const char *)0 as argument to tqDebug might lead
to crashes on certain platforms due to the platforms printf implementation.
\sa qWarning(), qFatal(), qInstallMsgHandler(),
\sa tqWarning(), tqFatal(), qInstallMsgHandler(),
\link debug.html Debugging\endlink
*/
/*!
\fn void qWarning( const char *msg, ... )
\fn void tqWarning( const char *msg, ... )
\relates QApplication
@ -390,7 +390,7 @@ Qt::WindowsVersion qt_winver = (Qt::WindowsVersion)qWinVersion();
void f( int c )
{
if ( c > 200 )
qWarning( "f: bad argument, c == %d", c );
tqWarning( "f: bad argument, c == %d", c );
}
\endcode
@ -400,15 +400,15 @@ Qt::WindowsVersion qt_winver = (Qt::WindowsVersion)qWinVersion();
\warning The internal buffer is limited to 8196 bytes (including
the '\0'-terminator).
\warning Passing (const char *)0 as argument to qWarning might lead
\warning Passing (const char *)0 as argument to tqWarning might lead
to crashes on certain platforms due to the platforms printf implementation.
\sa qDebug(), qFatal(), qInstallMsgHandler(),
\sa tqDebug(), tqFatal(), qInstallMsgHandler(),
\link debug.html Debugging\endlink
*/
/*!
\fn void qFatal( const char *msg, ... )
\fn void tqFatal( const char *msg, ... )
\relates QApplication
@ -423,7 +423,7 @@ Qt::WindowsVersion qt_winver = (Qt::WindowsVersion)qWinVersion();
int divide( int a, int b )
{
if ( b == 0 ) // program error
qFatal( "divide: cannot divide by zero" );
tqFatal( "divide: cannot divide by zero" );
return a/b;
}
\endcode
@ -434,10 +434,10 @@ Qt::WindowsVersion qt_winver = (Qt::WindowsVersion)qWinVersion();
\warning The internal buffer is limited to 8196 bytes (including
the '\0'-terminator).
\warning Passing (const char *)0 as argument to qFatal might lead
\warning Passing (const char *)0 as argument to tqFatal might lead
to crashes on certain platforms due to the platforms printf implementation.
\sa qDebug(), qWarning(), qInstallMsgHandler(),
\sa tqDebug(), tqWarning(), qInstallMsgHandler(),
\link debug.html Debugging\endlink
*/
@ -465,7 +465,7 @@ static void mac_default_handler( const char *msg )
#endif
void qDebug( const char *msg, ... )
void tqDebug( const char *msg, ... )
{
char buf[QT_BUFFER_LENGTH];
va_list ap;
@ -516,7 +516,7 @@ void debug( const char *msg, ... )
}
}
void qWarning( const char *msg, ... )
void tqWarning( const char *msg, ... )
{
char buf[QT_BUFFER_LENGTH];
va_list ap;
@ -568,7 +568,7 @@ void warning( const char *msg, ... )
}
}
void qFatal( const char *msg, ... )
void tqFatal( const char *msg, ... )
{
char buf[QT_BUFFER_LENGTH];
va_list ap;
@ -646,7 +646,7 @@ void fatal( const char *msg, ... )
This function does nothing when Qt is built with \c QT_NO_DEBUG
defined.
*/
void qSystemWarning( const char* msg, int code )
void tqSystemWarning( const char* msg, int code )
{
#ifndef QT_NO_DEBUG
#if defined(Q_OS_WIN32)
@ -666,7 +666,7 @@ void qSystemWarning( const char* msg, int code )
0,
NULL );
qWarning( "%s\n\tError code %d - %s", msg, code, QString::fromUcs2(string).latin1() );
tqWarning( "%s\n\tError code %d - %s", msg, code, QString::fromUcs2(string).latin1() );
}, {
FormatMessageA( FORMAT_MESSAGE_ALLOCATE_BUFFER|FORMAT_MESSAGE_FROM_SYSTEM,
NULL,
@ -676,14 +676,14 @@ void qSystemWarning( const char* msg, int code )
0,
NULL );
qWarning( "%s\n\tError code %d - %s", msg, code, (const char*)string );
tqWarning( "%s\n\tError code %d - %s", msg, code, (const char*)string );
} );
LocalFree( (HLOCAL)string );
#else
if ( code != -1 )
qWarning( "%s\n\tError code %d - %s", msg, code, strerror( code ) );
tqWarning( "%s\n\tError code %d - %s", msg, code, strerror( code ) );
else
qWarning( "%s", msg );
tqWarning( "%s", msg );
#endif
#else
Q_UNUSED( msg );
@ -719,12 +719,12 @@ void qSystemWarning( const char* msg, int code )
\endcode
If \c b is zero, the Q_ASSERT statement will output the following
message using the qWarning() function:
message using the tqWarning() function:
\code
ASSERT: "b != 0" in div.cpp (9)
\endcode
\sa qWarning(), \link debug.html Debugging\endlink
\sa tqWarning(), \link debug.html Debugging\endlink
*/
@ -748,7 +748,7 @@ void qSystemWarning( const char* msg, int code )
Q_CHECK_PTR( a );
\endcode
\sa qWarning(), \link debug.html Debugging\endlink
\sa tqWarning(), \link debug.html Debugging\endlink
*/
@ -764,7 +764,7 @@ void qSystemWarning( const char* msg, int code )
bool qt_check_pointer( bool c, const char *n, int l )
{
if ( c )
qWarning( "In file %s, line %d: Out of memory", n, l );
tqWarning( "In file %s, line %d: Out of memory", n, l );
return TRUE;
}
@ -775,7 +775,7 @@ static bool firstObsoleteWarning(const char *obj, const char *oldfunc )
if ( !obsoleteDict ) { // first time func is called
obsoleteDict = new QAsciiDict<int>;
#if defined(QT_DEBUG)
qDebug(
tqDebug(
"You are using obsolete functions in the Qt library. Call the function\n"
"qSuppressObsoleteWarnings() to suppress obsolete warnings.\n"
);
@ -793,44 +793,44 @@ static bool firstObsoleteWarning(const char *obj, const char *oldfunc )
static bool suppressObsolete = FALSE;
void qSuppressObsoleteWarnings( bool suppress )
void tqSuppressObsoleteWarnings( bool suppress )
{
suppressObsolete = suppress;
}
void qObsolete( const char *obj, const char *oldfunc, const char *newfunc )
void tqObsolete( const char *obj, const char *oldfunc, const char *newfunc )
{
if ( suppressObsolete )
return;
if ( !firstObsoleteWarning(obj, oldfunc) )
return;
if ( obj )
qDebug( "%s::%s: This function is obsolete, use %s instead.",
tqDebug( "%s::%s: This function is obsolete, use %s instead.",
obj, oldfunc, newfunc );
else
qDebug( "%s: This function is obsolete, use %s instead.",
tqDebug( "%s: This function is obsolete, use %s instead.",
oldfunc, newfunc );
}
void qObsolete( const char *obj, const char *oldfunc )
void tqObsolete( const char *obj, const char *oldfunc )
{
if ( suppressObsolete )
return;
if ( !firstObsoleteWarning(obj, oldfunc) )
return;
if ( obj )
qDebug( "%s::%s: This function is obsolete.", obj, oldfunc );
tqDebug( "%s::%s: This function is obsolete.", obj, oldfunc );
else
qDebug( "%s: This function is obsolete.", oldfunc );
tqDebug( "%s: This function is obsolete.", oldfunc );
}
void qObsolete( const char *message )
void tqObsolete( const char *message )
{
if ( suppressObsolete )
return;
if ( !firstObsoleteWarning( "Qt", message) )
return;
qDebug( "%s", message );
tqDebug( "%s", message );
}
@ -886,7 +886,7 @@ void qObsolete( const char *message )
}
\endcode
\sa qDebug(), qWarning(), qFatal(), \link debug.html Debugging\endlink
\sa tqDebug(), tqWarning(), tqFatal(), \link debug.html Debugging\endlink
*/
QtMsgHandler qInstallMsgHandler( QtMsgHandler h )

@ -912,9 +912,9 @@ extern Q_EXPORT bool qt_winunicode;
// System information
//
Q_EXPORT const char *qVersion();
Q_EXPORT bool qSysInfo( int *wordSize, bool *bigEndian );
Q_EXPORT bool qSharedBuild();
Q_EXPORT const char *tqVersion();
Q_EXPORT bool tqSysInfo( int *wordSize, bool *bigEndian );
Q_EXPORT bool tqSharedBuild();
#if defined(Q_OS_MAC)
int qMacVersion();
#elif defined(Q_WS_WIN)
@ -973,25 +973,25 @@ Q_EXPORT int qWinVersion();
#endif
Q_EXPORT void qDebug( const char *, ... ) // print debug message
Q_EXPORT void tqDebug( const char *, ... ) // print debug message
#if defined(Q_CC_GNU) && !defined(__INSURE__)
__attribute__ ((format (printf, 1, 2)))
#endif
;
Q_EXPORT void qWarning( const char *, ... ) // print warning message
Q_EXPORT void tqWarning( const char *, ... ) // print warning message
#if defined(Q_CC_GNU) && !defined(__INSURE__)
__attribute__ ((format (printf, 1, 2)))
#endif
;
Q_EXPORT void qFatal( const char *, ... ) // print fatal message and exit
Q_EXPORT void tqFatal( const char *, ... ) // print fatal message and exit
#if defined(Q_CC_GNU)
__attribute__ ((format (printf, 1, 2)))
#endif
;
Q_EXPORT void qSystemWarning( const char *, int code = -1 );
Q_EXPORT void tqSystemWarning( const char *, int code = -1 );
#if !defined(QT_CLEAN_NAMESPACE) // compatibility with Qt 1
@ -1019,9 +1019,9 @@ Q_EXPORT void fatal( const char *, ... ) // print fatal message and exit
#if !defined(Q_ASSERT)
# if defined(QT_CHECK_STATE)
# if defined(QT_FATAL_ASSERT)
# define Q_ASSERT(x) ((x) ? (void)0 : qFatal("ASSERT: \"%s\" in %s (%d)",#x,__FILE__,__LINE__))
# define Q_ASSERT(x) ((x) ? (void)0 : tqFatal("ASSERT: \"%s\" in %s (%d)",#x,__FILE__,__LINE__))
# else
# define Q_ASSERT(x) ((x) ? (void)0 : qWarning("ASSERT: \"%s\" in %s (%d)",#x,__FILE__,__LINE__))
# define Q_ASSERT(x) ((x) ? (void)0 : tqWarning("ASSERT: \"%s\" in %s (%d)",#x,__FILE__,__LINE__))
# endif
# else
# define Q_ASSERT(x)
@ -1060,27 +1060,27 @@ Q_EXPORT QtMsgHandler qInstallMsgHandler( QtMsgHandler );
typedef QtMsgHandler msg_handler;
#endif // QT_NO_COMPAT
Q_EXPORT void qSuppressObsoleteWarnings( bool = TRUE );
Q_EXPORT void tqSuppressObsoleteWarnings( bool = TRUE );
Q_EXPORT void qObsolete( const char *obj, const char *oldfunc,
Q_EXPORT void tqObsolete( const char *obj, const char *oldfunc,
const char *newfunc );
Q_EXPORT void qObsolete( const char *obj, const char *oldfunc );
Q_EXPORT void qObsolete( const char *message );
Q_EXPORT void tqObsolete( const char *obj, const char *oldfunc );
Q_EXPORT void tqObsolete( const char *message );
//
// Install paths from configure
//
Q_EXPORT const char *qInstallPath();
Q_EXPORT const char *qInstallPathDocs();
Q_EXPORT const char *qInstallPathHeaders();
Q_EXPORT const char *qInstallPathLibs();
Q_EXPORT const char *qInstallPathBins();
Q_EXPORT const char *qInstallPathPlugins();
Q_EXPORT const char *qInstallPathData();
Q_EXPORT const char *qInstallPathTranslations();
Q_EXPORT const char *qInstallPathSysconf();
Q_EXPORT const char *tqInstallPath();
Q_EXPORT const char *tqInstallPathDocs();
Q_EXPORT const char *tqInstallPathHeaders();
Q_EXPORT const char *tqInstallPathLibs();
Q_EXPORT const char *tqInstallPathBins();
Q_EXPORT const char *tqInstallPathPlugins();
Q_EXPORT const char *tqInstallPathData();
Q_EXPORT const char *tqInstallPathTranslations();
Q_EXPORT const char *tqInstallPathSysconf();
#endif /* __cplusplus */
@ -1095,7 +1095,7 @@ Q_EXPORT const char *qInstallPathSysconf();
#ifdef Q_FULL_TEMPLATE_INSTANTIATION
# define Q_DUMMY_COMPARISON_OPERATOR(C) \
bool operator==( const C& ) const { \
qWarning( #C"::operator==( const "#C"& ) got called." ); \
tqWarning( #C"::operator==( const "#C"& ) got called." ); \
return FALSE; \
}
#else

@ -501,12 +501,12 @@ bool QGPluginManager::addLibrary( QLibrary* lib )
if ( !takeFirst ) {
useful = TRUE;
plugDict.replace( *f, plugin );
qWarning("%s: Discarding feature %s in %s!",
tqWarning("%s: Discarding feature %s in %s!",
(const char*) QFile::encodeName( plugin->library()),
(*f).latin1(),
(const char*) QFile::encodeName( old->library() ) );
} else {
qWarning("%s: Feature %s already defined in %s!",
tqWarning("%s: Feature %s already defined in %s!",
(const char*) QFile::encodeName( old->library() ),
(*f).latin1(),
(const char*) QFile::encodeName( plugin->library() ) );

@ -236,7 +236,7 @@ bool QGVector::insert( uint index, Item d ) // insert item at index
{
#if defined(QT_CHECK_RANGE)
if ( index >= len ) { // range error
qWarning( "QGVector::insert: Index %d out of range", index );
tqWarning( "QGVector::insert: Index %d out of range", index );
return FALSE;
}
#endif
@ -259,7 +259,7 @@ bool QGVector::remove( uint index ) // remove item at index
{
#if defined(QT_CHECK_RANGE)
if ( index >= len ) { // range error
qWarning( "QGVector::remove: Index %d out of range", index );
tqWarning( "QGVector::remove: Index %d out of range", index );
return FALSE;
}
#endif
@ -275,7 +275,7 @@ QPtrCollection::Item QGVector::take( uint index ) // take out item
{
#if defined(QT_CHECK_RANGE)
if ( index >= len ) { // range error
qWarning( "QGVector::take: Index %d out of range", index );
tqWarning( "QGVector::take: Index %d out of range", index );
return 0;
}
#endif
@ -421,7 +421,7 @@ int QGVector::bsearch( Item d ) const // binary search; when sorted
return -1;
if ( !d ) {
#if defined(QT_CHECK_NULL)
qWarning( "QGVector::bsearch: Cannot search for null object" );
tqWarning( "QGVector::bsearch: Cannot search for null object" );
#endif
return -1;
}
@ -457,7 +457,7 @@ int QGVector::findRef( Item d, uint index) const // find exact item in vector
{
#if defined(QT_CHECK_RANGE)
if ( index > len ) { // range error
qWarning( "QGVector::findRef: Index %d out of range", index );
tqWarning( "QGVector::findRef: Index %d out of range", index );
return -1;
}
#endif
@ -472,7 +472,7 @@ int QGVector::find( Item d, uint index ) const // find equal item in vector
{
#if defined(QT_CHECK_RANGE)
if ( index >= len ) { // range error
qWarning( "QGVector::find: Index %d out of range", index );
tqWarning( "QGVector::find: Index %d out of range", index );
return -1;
}
#endif
@ -530,7 +530,7 @@ void QGVector::toList( QGList *list ) const // store items in list
void QGVector::warningIndexRange( uint i )
{
#if defined(QT_CHECK_RANGE)
qWarning( "QGVector::operator[]: Index %d out of range", i );
tqWarning( "QGVector::operator[]: Index %d out of range", i );
#else
Q_UNUSED( i )
#endif

@ -431,7 +431,7 @@ void QIODevice::setType( int t )
{
#if defined(QT_CHECK_RANGE)
if ( (t & IO_TypeMask) != t )
qWarning( "QIODevice::setType: Specified type out of range" );
tqWarning( "QIODevice::setType: Specified type out of range" );
#endif
ioMode &= ~IO_TypeMask; // reset type bits
ioMode |= t;
@ -447,7 +447,7 @@ void QIODevice::setMode( int m )
{
#if defined(QT_CHECK_RANGE)
if ( (m & IO_ModeMask) != m )
qWarning( "QIODevice::setMode: Specified mode out of range" );
tqWarning( "QIODevice::setMode: Specified mode out of range" );
#endif
ioMode &= ~IO_ModeMask; // reset mode bits
ioMode |= m;
@ -463,7 +463,7 @@ void QIODevice::setState( int s )
{
#if defined(QT_CHECK_RANGE)
if ( ((uint)s & IO_StateMask) != (uint)s )
qWarning( "QIODevice::setState: Specified state out of range" );
tqWarning( "QIODevice::setState: Specified state out of range" );
#endif
ioMode &= ~IO_StateMask; // reset state bits
ioMode |= (uint)s;
@ -569,9 +569,9 @@ bool QIODevice::at( Offset pos )
#if defined(QT_CHECK_RANGE)
if ( pos > size() ) {
#if defined(QT_ABI_QT4)
qWarning( "QIODevice::at: Index %lld out of range", pos );
tqWarning( "QIODevice::at: Index %lld out of range", pos );
#else
qWarning( "QIODevice::at: Index %lu out of range", pos );
tqWarning( "QIODevice::at: Index %lu out of range", pos );
#endif
return FALSE;
}

@ -342,13 +342,13 @@ bool QLibrary::unload()
#if !defined(QT_NO_LIBRARY_UNLOAD)
if ( !d->freeLibrary() ) {
# if defined(QT_DEBUG_COMPONENT)
qWarning( "%s could not be unloaded", (const char*) QFile::encodeName(library()) );
tqWarning( "%s could not be unloaded", (const char*) QFile::encodeName(library()) );
# endif
return FALSE;
}
# if defined(QT_DEBUG_COMPONENT) && QT_DEBUG_COMPONENT == 2
qWarning( "%s has been unloaded", (const char*) QFile::encodeName(library()) );
tqWarning( "%s has been unloaded", (const char*) QFile::encodeName(library()) );
# endif
d->pHnd = 0;
#endif

@ -68,7 +68,7 @@ bool QLibraryPrivate::loadLibrary()
pHnd = (void*)shl_load( filename.latin1(), BIND_DEFERRED | BIND_NONFATAL | DYNAMIC_PATH, 0 );
#if defined(QT_DEBUG) || defined(QT_DEBUG_COMPONENT)
if ( !pHnd )
qWarning( "%s: failed to load library!", filename.latin1() );
tqWarning( "%s: failed to load library!", filename.latin1() );
#endif
return pHnd != 0;
}
@ -81,7 +81,7 @@ bool QLibraryPrivate::freeLibrary()
if ( shl_unload( (shl_t)pHnd ) ) {
#if defined(QT_DEBUG) || defined(QT_DEBUG_COMPONENT)
QString filename = library->library();
qWarning( "%s: Failed to unload library!", filename.latin1() );
tqWarning( "%s: Failed to unload library!", filename.latin1() );
#endif
return FALSE;
}
@ -98,7 +98,7 @@ void* QLibraryPrivate::resolveSymbol( const char* symbol )
if ( shl_findsym( (shl_t*)&pHnd, symbol, TYPE_UNDEFINED, &address ) < 0 ) {
#if defined(QT_DEBUG_COMPONENT)
QString filename = library->library();
qWarning( "%s: couldn't resolve symbol \"%s\"", filename.latin1(), symbol );
tqWarning( "%s: couldn't resolve symbol \"%s\"", filename.latin1(), symbol );
#endif
}
return address;
@ -120,7 +120,7 @@ bool QLibraryPrivate::loadLibrary()
pHnd = DL_PREFIX(dlopen)( filename.latin1(), RTLD_LAZY );
#if defined(QT_DEBUG) || defined(QT_DEBUG_COMPONENT)
if ( !pHnd )
qWarning( "%s", DL_PREFIX(dlerror)() );
tqWarning( "%s", DL_PREFIX(dlerror)() );
#endif
return pHnd != 0;
}
@ -132,7 +132,7 @@ bool QLibraryPrivate::freeLibrary()
if ( DL_PREFIX(dlclose)( pHnd ) ) {
#if defined(QT_DEBUG) || defined(QT_DEBUG_COMPONENT)
qWarning( "%s", DL_PREFIX(dlerror)() );
tqWarning( "%s", DL_PREFIX(dlerror)() );
#endif
return FALSE;
}
@ -159,7 +159,7 @@ void* QLibraryPrivate::resolveSymbol( const char* symbol )
#if defined(QT_DEBUG_COMPONENT)
const char* error = DL_PREFIX(dlerror)();
if ( error )
qWarning( "%s", error );
tqWarning( "%s", error );
#endif
return address;
}

@ -3071,7 +3071,7 @@ static char digitToCLocale(QChar zero, QChar d)
&& zero.unicode() + 10 > d.unicode())
return '0' + d.unicode() - zero.unicode();
qWarning("QLocalePrivate::digitToCLocale(): bad digit: row=%d, cell=%d", d.row(), d.cell());
tqWarning("QLocalePrivate::digitToCLocale(): bad digit: row=%d, cell=%d", d.row(), d.cell());
return QChar(0);
}

@ -577,7 +577,7 @@ Q_INLINE_TEMPLATES Q_TYPENAME QMapPrivate<Key,T>::Iterator QMapPrivate<Key,T>::i
#ifdef QT_CHECK_RANGE
# if !defined( QT_NO_DEBUG ) && defined( QT_CHECK_MAP_RANGE )
# define QT_CHECK_INVALID_MAP_ELEMENT if ( empty() ) qWarning( "QMap: Warning invalid element" )
# define QT_CHECK_INVALID_MAP_ELEMENT if ( empty() ) tqWarning( "QMap: Warning invalid element" )
# define QT_CHECK_INVALID_MAP_ELEMENT_FATAL Q_ASSERT( !empty() );
# else
# define QT_CHECK_INVALID_MAP_ELEMENT

@ -119,7 +119,7 @@ QMutexPrivate::~QMutexPrivate()
#ifdef QT_CHECK_RANGE
if ( ret )
qWarning( "Mutex destroy failure: %s", strerror( ret ) );
tqWarning( "Mutex destroy failure: %s", strerror( ret ) );
#endif
}
@ -136,7 +136,7 @@ QRealMutexPrivate::QRealMutexPrivate(bool recurs)
#ifdef QT_CHECK_RANGE
if( ret )
qWarning( "Mutex init failure: %s", strerror( ret ) );
tqWarning( "Mutex init failure: %s", strerror( ret ) );
#endif // QT_CHECK_RANGE
}
@ -146,7 +146,7 @@ void QRealMutexPrivate::lock()
#ifdef QT_CHECK_RANGE
if (ret)
qWarning("Mutex lock failure: %s", strerror(ret));
tqWarning("Mutex lock failure: %s", strerror(ret));
#endif
}
@ -156,7 +156,7 @@ void QRealMutexPrivate::unlock()
#ifdef QT_CHECK_RANGE
if (ret)
qWarning("Mutex unlock failure: %s", strerror(ret));
tqWarning("Mutex unlock failure: %s", strerror(ret));
#endif
}
@ -168,7 +168,7 @@ bool QRealMutexPrivate::locked()
return TRUE;
} else if (ret) {
#ifdef QT_CHECK_RANGE
qWarning("Mutex locktest failure: %s", strerror(ret));
tqWarning("Mutex locktest failure: %s", strerror(ret));
#endif
} else
pthread_mutex_unlock(&handle);
@ -184,7 +184,7 @@ bool QRealMutexPrivate::trylock()
return FALSE;
} else if (ret) {
#ifdef QT_CHECK_RANGE
qWarning("Mutex trylock failure: %s", strerror(ret));
tqWarning("Mutex trylock failure: %s", strerror(ret));
#endif
return FALSE;
}
@ -210,7 +210,7 @@ QRecursiveMutexPrivate::QRecursiveMutexPrivate()
# ifdef QT_CHECK_RANGE
if (ret)
qWarning( "Mutex init failure: %s", strerror(ret) );
tqWarning( "Mutex init failure: %s", strerror(ret) );
# endif
pthread_mutexattr_init(&attr);
@ -219,7 +219,7 @@ QRecursiveMutexPrivate::QRecursiveMutexPrivate()
# ifdef QT_CHECK_RANGE
if (ret)
qWarning( "Mutex init failure: %s", strerror(ret) );
tqWarning( "Mutex init failure: %s", strerror(ret) );
# endif
}
@ -229,7 +229,7 @@ QRecursiveMutexPrivate::~QRecursiveMutexPrivate()
# ifdef QT_CHECK_RANGE
if (ret)
qWarning( "Mutex destroy failure: %s", strerror(ret) );
tqWarning( "Mutex destroy failure: %s", strerror(ret) );
# endif
}
@ -263,8 +263,8 @@ void QRecursiveMutexPrivate::unlock()
}
} else {
#ifdef QT_CHECK_RANGE
qWarning("QMutex::unlock: unlock from different thread than locker");
qWarning(" was locked by %d, unlock attempt from %d",
tqWarning("QMutex::unlock: unlock from different thread than locker");
tqWarning(" was locked by %d, unlock attempt from %d",
(int)owner, (int)pthread_self());
#endif
}
@ -284,7 +284,7 @@ bool QRecursiveMutexPrivate::locked()
} else {
#ifdef QT_CHECK_RANGE
if (code)
qWarning("Mutex trylock failure: %s", strerror(code));
tqWarning("Mutex trylock failure: %s", strerror(code));
#endif
pthread_mutex_unlock(&handle);
@ -311,7 +311,7 @@ bool QRecursiveMutexPrivate::trylock()
ret = FALSE;
} else if (code) {
#ifdef QT_CHECK_RANGE
qWarning("Mutex trylock failure: %s", strerror(code));
tqWarning("Mutex trylock failure: %s", strerror(code));
#endif
ret = FALSE;
} else {

@ -1516,49 +1516,49 @@ void QRegExpEngine::heuristicallyChooseHeuristic()
void QRegExpEngine::dump() const
{
int i, j;
qDebug( "Case %ssensitive engine", cs ? "" : "in" );
qDebug( " States" );
tqDebug( "Case %ssensitive engine", cs ? "" : "in" );
tqDebug( " States" );
for ( i = 0; i < ns; i++ ) {
qDebug( " %d%s", i,
tqDebug( " %d%s", i,
i == InitialState ? " (initial)" :
i == FinalState ? " (final)" : "" );
#ifndef QT_NO_REGEXP_CAPTURE
qDebug( " in atom %d", s[i]->atom );
tqDebug( " in atom %d", s[i]->atom );
#endif
int m = s[i]->match;
if ( (m & CharClassBit) != 0 ) {
qDebug( " match character class %d", m ^ CharClassBit );
tqDebug( " match character class %d", m ^ CharClassBit );
#ifndef QT_NO_REGEXP_CCLASS
cl[m ^ CharClassBit]->dump();
#else
qDebug( " negative character class" );
tqDebug( " negative character class" );
#endif
} else if ( (m & BackRefBit) != 0 ) {
qDebug( " match back-reference %d", m ^ BackRefBit );
tqDebug( " match back-reference %d", m ^ BackRefBit );
} else if ( m >= 0x20 && m <= 0x7e ) {
qDebug( " match 0x%.4x (%c)", m, m );
tqDebug( " match 0x%.4x (%c)", m, m );
} else {
qDebug( " match 0x%.4x", m );
tqDebug( " match 0x%.4x", m );
}
for ( j = 0; j < (int) s[i]->outs.size(); j++ ) {
int next = s[i]->outs[j];
qDebug( " -> %d", next );
tqDebug( " -> %d", next );
if ( s[i]->reenter != 0 && s[i]->reenter->contains(next) )
qDebug( " [reenter %d]", (*s[i]->reenter)[next] );
tqDebug( " [reenter %d]", (*s[i]->reenter)[next] );
if ( s[i]->anchors != 0 && at(*s[i]->anchors, next) != 0 )
qDebug( " [anchors 0x%.8x]", (*s[i]->anchors)[next] );
tqDebug( " [anchors 0x%.8x]", (*s[i]->anchors)[next] );
}
}
#ifndef QT_NO_REGEXP_CAPTURE
if ( nf > 0 ) {
qDebug( " Atom Parent Capture" );
tqDebug( " Atom Parent Capture" );
for ( i = 0; i < nf; i++ )
qDebug( " %6d %6d %6d", i, f[i].parent, f[i].capture );
tqDebug( " %6d %6d %6d", i, f[i].parent, f[i].capture );
}
#endif
#ifndef QT_NO_REGEXP_ANCHOR_ALT
for ( i = 0; i < (int) aa.size(); i++ )
qDebug( " Anchor alternation 0x%.8x: 0x%.8x 0x%.9x", i, aa[i].a,
tqDebug( " Anchor alternation 0x%.8x: 0x%.8x 0x%.9x", i, aa[i].a,
aa[i].b );
#endif
}
@ -2290,13 +2290,13 @@ bool QRegExpEngine::CharClass::in( QChar ch ) const
void QRegExpEngine::CharClass::dump() const
{
int i;
qDebug( " %stive character class", n ? "nega" : "posi" );
tqDebug( " %stive character class", n ? "nega" : "posi" );
#ifndef QT_NO_REGEXP_CCLASS
if ( c != 0 )
qDebug( " categories 0x%.8x", c );
tqDebug( " categories 0x%.8x", c );
#endif
for ( i = 0; i < (int) r.size(); i++ )
qDebug( " 0x%.4x through 0x%.4x", r[i].from, r[i].to );
tqDebug( " 0x%.4x through 0x%.4x", r[i].from, r[i].to );
}
#endif
#endif
@ -2559,22 +2559,22 @@ void QRegExpEngine::Box::setupHeuristics()
void QRegExpEngine::Box::dump() const
{
int i;
qDebug( "Box of at least %d character%s", minl, minl == 1 ? "" : "s" );
qDebug( " Left states:" );
tqDebug( "Box of at least %d character%s", minl, minl == 1 ? "" : "s" );
tqDebug( " Left states:" );
for ( i = 0; i < (int) ls.size(); i++ ) {
if ( at(lanchors, ls[i]) == 0 )
qDebug( " %d", ls[i] );
tqDebug( " %d", ls[i] );
else
qDebug( " %d [anchors 0x%.8x]", ls[i], lanchors[ls[i]] );
tqDebug( " %d [anchors 0x%.8x]", ls[i], lanchors[ls[i]] );
}
qDebug( " Right states:" );
tqDebug( " Right states:" );
for ( i = 0; i < (int) rs.size(); i++ ) {
if ( at(ranchors, rs[i]) == 0 )
qDebug( " %d", rs[i] );
tqDebug( " %d", rs[i] );
else
qDebug( " %d [anchors 0x%.8x]", rs[i], ranchors[rs[i]] );
tqDebug( " %d [anchors 0x%.8x]", rs[i], ranchors[rs[i]] );
}
qDebug( " Skip anchors: 0x%.8x", skipanchors );
tqDebug( " Skip anchors: 0x%.8x", skipanchors );
}
#endif

@ -178,7 +178,7 @@ int QSemaphore::operator+=(int n)
if ( n < 0 || n > d->max ) {
#ifdef QT_CHECK_RANGE
qWarning( "QSemaphore::operator+=: paramter %d out of range", n );
tqWarning( "QSemaphore::operator+=: paramter %d out of range", n );
#endif // QT_CHECK_RANGE
n = n < 0 ? 0 : d->max;
}
@ -201,7 +201,7 @@ int QSemaphore::operator-=(int n)
if ( n < 0 || n > d->value ) {
#ifdef QT_CHECK_RANGE
qWarning( "QSemaphore::operator-=: paramter %d out of range", n );
tqWarning( "QSemaphore::operator-=: paramter %d out of range", n );
#endif // QT_CHECK_RANGE
n = n < 0 ? 0 : d->value;
}

@ -345,7 +345,7 @@ void QSettingsHeading::read(const QString &filename)
QFile file(filename);
if (! file.open(IO_ReadOnly)) {
#if defined(QT_CHECK_STATE)
qWarning("QSettings: failed to open file '%s'", filename.latin1());
tqWarning("QSettings: failed to open file '%s'", filename.latin1());
#endif
return;
}
@ -391,7 +391,7 @@ void QSettingsHeading::parseLine(QTextStream &stream)
} else {
if (git == end()) {
#if defined(QT_CHECK_STATE)
qWarning("QSettings: line '%s' out of group", line.latin1());
tqWarning("QSettings: line '%s' out of group", line.latin1());
#endif
return;
}
@ -399,7 +399,7 @@ void QSettingsHeading::parseLine(QTextStream &stream)
int i = line.find('=');
if (i == -1) {
#if defined(QT_CHECK_STATE)
qWarning("QSettings: malformed line '%s' in group '%s'",
tqWarning("QSettings: malformed line '%s' in group '%s'",
line.latin1(), git.key().latin1());
#endif
return;
@ -430,7 +430,7 @@ void QSettingsHeading::parseLine(QTextStream &stream)
// still escaped at EOL - manually escaped "newline"
if (stream.atEnd()) {
#if defined(QT_CHECK_STATE)
qWarning("QSettings: reached end of file, expected continued line");
tqWarning("QSettings: reached end of file, expected continued line");
#endif
break;
}
@ -503,13 +503,13 @@ QSettingsPrivate::QSettingsPrivate( QSettings::Format format )
} );
#endif // Q_OS_TEMP
#else
defPath = qInstallPathSysconf();
defPath = tqInstallPathSysconf();
#endif
QDir dir(appSettings);
if (! dir.exists()) {
if (! dir.mkdir(dir.path()))
#if defined(QT_CHECK_STATE)
qWarning("QSettings: error creating %s", dir.path().latin1());
tqWarning("QSettings: error creating %s", dir.path().latin1());
#else
;
#endif
@ -804,7 +804,7 @@ void QSettings::insertSearchPath( System s, const QString &path)
if ( !qt_verify_key( path ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSettings::insertSearchPath: Invalid key: '%s'", path.isNull() ? "(null)" : path.latin1() );
tqWarning( "QSettings::insertSearchPath: Invalid key: '%s'", path.isNull() ? "(null)" : path.latin1() );
#endif
return;
}
@ -844,7 +844,7 @@ void QSettings::removeSearchPath( System s, const QString &path)
{
if ( !qt_verify_key( path ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSettings::insertSearchPath: Invalid key: '%s'", path.isNull() ? "(null)" : path.latin1() );
tqWarning( "QSettings::insertSearchPath: Invalid key: '%s'", path.isNull() ? "(null)" : path.latin1() );
#endif
return;
}
@ -985,7 +985,7 @@ bool QSettings::sync()
if ( filename.isEmpty() ) {
#ifdef QT_CHECK_STATE
qWarning("QSettings::sync: filename is null/empty");
tqWarning("QSettings::sync: filename is null/empty");
#endif // QT_CHECK_STATE
success = FALSE;
@ -1000,7 +1000,7 @@ bool QSettings::sync()
if (! file.open(IO_WriteOnly)) {
#ifdef QT_CHECK_STATE
qWarning("QSettings::sync: failed to open '%s' for writing",
tqWarning("QSettings::sync: failed to open '%s' for writing",
file.name().latin1());
#endif // QT_CHECK_STATE
@ -1041,7 +1041,7 @@ bool QSettings::sync()
if (file.status() != IO_Ok) {
#ifdef QT_CHECK_STATE
qWarning("QSettings::sync: error at end of write");
tqWarning("QSettings::sync: error at end of write");
#endif // QT_CHECK_STATE
success = FALSE;
@ -1055,7 +1055,7 @@ bool QSettings::sync()
!dir.rename( file.name(), filename, TRUE ) ) {
#ifdef QT_CHECK_STATE
qWarning( "QSettings::sync: error writing file '%s'",
tqWarning( "QSettings::sync: error writing file '%s'",
QFile::encodeName( filename ).data() );
#endif // QT_CHECK_STATE
@ -1096,7 +1096,7 @@ bool QSettings::readBoolEntry(const QString &key, bool def, bool *ok )
QString grp_key( groupKey( group(), key ) );
if ( !qt_verify_key( grp_key ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSettings::readBoolEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
tqWarning( "QSettings::readBoolEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
#endif
if ( ok )
*ok = FALSE;
@ -1121,7 +1121,7 @@ bool QSettings::readBoolEntry(const QString &key, bool def, bool *ok )
return FALSE;
if (! value.isEmpty())
qWarning("QSettings::readBoolEntry: '%s' is not 'true' or 'false'",
tqWarning("QSettings::readBoolEntry: '%s' is not 'true' or 'false'",
value.latin1());
if ( ok )
*ok = FALSE;
@ -1148,7 +1148,7 @@ double QSettings::readDoubleEntry(const QString &key, double def, bool *ok )
QString grp_key( groupKey( group(), key ) );
if ( !qt_verify_key( grp_key ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSettings::readDoubleEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
tqWarning( "QSettings::readDoubleEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
#endif
if ( ok )
*ok = FALSE;
@ -1167,7 +1167,7 @@ double QSettings::readDoubleEntry(const QString &key, double def, bool *ok )
if ( conv_ok )
return retval;
if ( ! value.isEmpty() )
qWarning( "QSettings::readDoubleEntry: '%s' is not a number",
tqWarning( "QSettings::readDoubleEntry: '%s' is not a number",
value.latin1() );
if ( ok )
*ok = FALSE;
@ -1194,7 +1194,7 @@ int QSettings::readNumEntry(const QString &key, int def, bool *ok )
QString grp_key( groupKey( group(), key ) );
if ( !qt_verify_key( grp_key ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSettings::readNumEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
tqWarning( "QSettings::readNumEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
#endif
if ( ok )
*ok = FALSE;
@ -1212,7 +1212,7 @@ int QSettings::readNumEntry(const QString &key, int def, bool *ok )
if ( conv_ok )
return retval;
if ( ! value.isEmpty() )
qWarning( "QSettings::readNumEntry: '%s' is not a number",
tqWarning( "QSettings::readNumEntry: '%s' is not a number",
value.latin1() );
if ( ok )
*ok = FALSE;
@ -1239,7 +1239,7 @@ QString QSettings::readEntry(const QString &key, const QString &def, bool *ok )
QString grp_key( groupKey( group(), key ) );
if ( !qt_verify_key( grp_key ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSettings::readEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
tqWarning( "QSettings::readEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
#endif
if ( ok )
*ok = FALSE;
@ -1263,7 +1263,7 @@ QString QSettings::readEntry(const QString &key, const QString &def, bool *ok )
if (list.count() < 2) {
#ifdef QT_CHECK_STATE
qWarning("QSettings::readEntry: invalid key '%s'", grp_key.latin1());
tqWarning("QSettings::readEntry: invalid key '%s'", grp_key.latin1());
#endif // QT_CHECK_STATE
if ( ok )
*ok = FALSE;
@ -1321,7 +1321,7 @@ bool QSettings::writeEntry(const QString &key, bool value)
QString grp_key( groupKey( group(), key ) );
if ( !qt_verify_key( grp_key ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSettings::writeEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
tqWarning( "QSettings::writeEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
#endif
return FALSE;
}
@ -1352,7 +1352,7 @@ bool QSettings::writeEntry(const QString &key, double value)
QString grp_key( groupKey( group(), key ) );
if ( !qt_verify_key( grp_key ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSettings::writeEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
tqWarning( "QSettings::writeEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
#endif
return FALSE;
}
@ -1382,7 +1382,7 @@ bool QSettings::writeEntry(const QString &key, int value)
QString grp_key( groupKey( group(), key ) );
if ( !qt_verify_key( grp_key ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSettings::writeEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
tqWarning( "QSettings::writeEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
#endif
return FALSE;
}
@ -1435,7 +1435,7 @@ bool QSettings::writeEntry(const QString &key, const QString &value)
QString grp_key( groupKey( group(), key ) );
if ( !qt_verify_key( grp_key ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSettings::writeEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
tqWarning( "QSettings::writeEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
#endif
return FALSE;
}
@ -1454,7 +1454,7 @@ bool QSettings::writeEntry(const QString &key, const QString &value)
if (list.count() < 2) {
#ifdef QT_CHECK_STATE
qWarning("QSettings::writeEntry: invalid key '%s'", grp_key.latin1());
tqWarning("QSettings::writeEntry: invalid key '%s'", grp_key.latin1());
#endif // QT_CHECK_STATE
return FALSE;
@ -1498,7 +1498,7 @@ bool QSettings::removeEntry(const QString &key)
QString grp_key( groupKey( group(), key ) );
if ( !qt_verify_key( grp_key ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSettings::removeEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
tqWarning( "QSettings::removeEntry: Invalid key: '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
#endif
return FALSE;
}
@ -1515,7 +1515,7 @@ bool QSettings::removeEntry(const QString &key)
if (list.count() < 2) {
#ifdef QT_CHECK_STATE
qWarning("QSettings::removeEntry: invalid key '%s'", grp_key.latin1());
tqWarning("QSettings::removeEntry: invalid key '%s'", grp_key.latin1());
#endif // QT_CHECK_STATE
return FALSE;
@ -1578,7 +1578,7 @@ QStringList QSettings::entryList(const QString &key) const
QString grp_key( groupKey( group(), key ) );
if ( !qt_verify_key( grp_key ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSettings::entryList: Invalid key: %s", grp_key.isNull() ? "(null)" : grp_key.latin1() );
tqWarning( "QSettings::entryList: Invalid key: %s", grp_key.isNull() ? "(null)" : grp_key.latin1() );
#endif
return QStringList();
}
@ -1595,7 +1595,7 @@ QStringList QSettings::entryList(const QString &key) const
if (list.count() < 1) {
#ifdef QT_CHECK_STATE
qWarning("QSettings::listEntries: invalid key '%s'", grp_key.latin1());
tqWarning("QSettings::listEntries: invalid key '%s'", grp_key.latin1());
#endif // QT_CHECK_STATE
return QStringList();
@ -1686,7 +1686,7 @@ QStringList QSettings::subkeyList(const QString &key) const
QString grp_key( groupKey( group(), key ) );
if ( !qt_verify_key( grp_key ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSettings::subkeyList: Invalid key: %s", grp_key.isNull() ? "(null)" : grp_key.latin1() );
tqWarning( "QSettings::subkeyList: Invalid key: %s", grp_key.isNull() ? "(null)" : grp_key.latin1() );
#endif
return QStringList();
}
@ -1704,7 +1704,7 @@ QStringList QSettings::subkeyList(const QString &key) const
if (list.count() < 1) {
#ifdef QT_CHECK_STATE
qWarning("QSettings::subkeyList: invalid key '%s'", grp_key.latin1());
tqWarning("QSettings::subkeyList: invalid key '%s'", grp_key.latin1());
#endif // QT_CHECK_STATE
return QStringList();
@ -1781,7 +1781,7 @@ QDateTime QSettings::lastModificationTime( const QString &key )
QString grp_key( groupKey( group(), key ) );
if ( !qt_verify_key( grp_key ) ) {
#if defined(QT_CHECK_STATE)
qWarning( "QSettings::lastModificationTime: Invalid key '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
tqWarning( "QSettings::lastModificationTime: Invalid key '%s'", grp_key.isNull() ? "(null)" : grp_key.latin1() );
#endif
return QDateTime();
}
@ -1797,7 +1797,7 @@ QDateTime QSettings::lastModificationTime( const QString &key )
if (list.count() < 2) {
#ifdef QT_CHECK_STATE
qWarning("QSettings::lastModificationTime: Invalid key '%s'", grp_key.latin1());
tqWarning("QSettings::lastModificationTime: Invalid key '%s'", grp_key.latin1());
#endif // QT_CHECK_STATE
return QDateTime();
@ -2030,7 +2030,7 @@ void QSettings::setPath( const QString &domain, const QString &product, Scope sc
if (scope == User)
actualSearchPath = QDir::homeDirPath() + "/.";
else
actualSearchPath = QString(qInstallPathSysconf()) + "/";
actualSearchPath = QString(tqInstallPathSysconf()) + "/";
actualSearchPath += domain.mid( 0, lastDot ) + "/" + product;
insertSearchPath( Unix, actualSearchPath );
#endif

@ -1986,7 +1986,7 @@ static QString replaceArgEscapes(const QString &s, const ArgEscapeData &d, int f
differ between languages.
If there is no place marker (\c %1, \c %2, etc.), a warning
message (qWarning()) is output and the result is undefined.
message (tqWarning()) is output and the result is undefined.
\warning If any placeholder occurs more than once, the result is undefined.
@ -1996,7 +1996,7 @@ QString QString::arg( const QString& a, int fieldWidth ) const
ArgEscapeData d = findArgEscapes(*this);
if (d.occurrences == 0) {
qWarning( "QString::arg(): Argument missing: %s, %s", latin1(),
tqWarning( "QString::arg(): Argument missing: %s, %s", latin1(),
a.latin1() );
return *this;
}
@ -2103,7 +2103,7 @@ QString QString::arg( Q_LLONG a, int fieldWidth, int base ) const
ArgEscapeData d = findArgEscapes(*this);
if (d.occurrences == 0) {
qWarning( "QString::arg(): Argument missing: %s, %lld", latin1(),
tqWarning( "QString::arg(): Argument missing: %s, %lld", latin1(),
a );
return *this;
}
@ -2133,7 +2133,7 @@ QString QString::arg( Q_ULLONG a, int fieldWidth, int base ) const
ArgEscapeData d = findArgEscapes(*this);
if (d.occurrences == 0) {
qWarning( "QString::arg(): Argument missing: %s, %llu", latin1(),
tqWarning( "QString::arg(): Argument missing: %s, %llu", latin1(),
a );
return *this;
}
@ -2249,7 +2249,7 @@ QString QString::arg( double a, int fieldWidth, char fmt, int prec ) const
ArgEscapeData d = findArgEscapes(*this);
if (d.occurrences == 0) {
qWarning( "QString::arg(): Argument missing: %s, %g", latin1(),
tqWarning( "QString::arg(): Argument missing: %s, %g", latin1(),
a );
return *this;
}
@ -2281,7 +2281,7 @@ QString QString::arg( double a, int fieldWidth, char fmt, int prec ) const
break;
default:
#if defined(QT_CHECK_RANGE)
qWarning( "QString::setNum: Invalid format char '%c'", fmt );
tqWarning( "QString::setNum: Invalid format char '%c'", fmt );
#endif
break;
}
@ -2329,7 +2329,7 @@ QString QString::multiArg( int numArgs, const QString& a1, const QString& a2,
} while ( lastDigit < 10 && digitUsed[lastDigit] == 0 );
if ( lastDigit == 10 ) {
qWarning( "QString::arg(): Argument missing: %s, %s",
tqWarning( "QString::arg(): Argument missing: %s, %s",
latin1(), args[i]->latin1() );
numArgs = i;
lastDigit = 9;
@ -4735,7 +4735,7 @@ Q_LLONG QString::toLongLong( bool *ok, int base ) const
{
#if defined(QT_CHECK_RANGE)
if ( base != 0 && (base < 2 || base > 36) ) {
qWarning( "QString::toLongLong: Invalid base (%d)", base );
tqWarning( "QString::toLongLong: Invalid base (%d)", base );
base = 10;
}
#endif
@ -4825,7 +4825,7 @@ Q_ULLONG QString::toULongLong( bool *ok, int base ) const
{
#if defined(QT_CHECK_RANGE)
if ( base != 0 && (base < 2 || base > 36) ) {
qWarning( "QString::toULongLong: Invalid base %d", base );
tqWarning( "QString::toULongLong: Invalid base %d", base );
base = 10;
}
#endif
@ -5153,7 +5153,7 @@ QString &QString::setNum( Q_LLONG n, int base )
{
#if defined(QT_CHECK_RANGE)
if ( base < 2 || base > 36 ) {
qWarning( "QString::setNum: Invalid base %d", base );
tqWarning( "QString::setNum: Invalid base %d", base );
base = 10;
}
#endif
@ -5175,7 +5175,7 @@ QString &QString::setNum( Q_ULLONG n, int base )
{
#if defined(QT_CHECK_RANGE)
if ( base < 2 || base > 36 ) {
qWarning( "QString::setNum: Invalid base %d", base );
tqWarning( "QString::setNum: Invalid base %d", base );
base = 10;
}
#endif
@ -5282,7 +5282,7 @@ QString &QString::setNum( double n, char f, int prec )
break;
default:
#if defined(QT_CHECK_RANGE)
qWarning( "QString::setNum: Invalid format char '%c'", f );
tqWarning( "QString::setNum: Invalid format char '%c'", f );
#endif
break;
}
@ -7128,7 +7128,7 @@ QCString qt_winQString2MB( const QString& s, int uclen )
} else {
#ifndef QT_NO_DEBUG
// Fail.
qWarning("WideCharToMultiByte cannot convert multibyte text (error %d): %s (UTF8)",
tqWarning("WideCharToMultiByte cannot convert multibyte text (error %d): %s (UTF8)",
r, s.utf8().data());
#endif
break;
@ -7154,7 +7154,7 @@ QString qt_winMB2QString( const char* mb, int mblen )
int r = GetLastError();
if ( r == ERROR_INSUFFICIENT_BUFFER ) {
if ( wc != wc_auto ) {
qWarning("Size changed in MultiByteToWideChar");
tqWarning("Size changed in MultiByteToWideChar");
break;
} else {
wclen = MultiByteToWideChar( CP_ACP, MB_PRECOMPOSED,
@ -7164,7 +7164,7 @@ QString qt_winMB2QString( const char* mb, int mblen )
}
} else {
// Fail.
qWarning("MultiByteToWideChar cannot convert multibyte text");
tqWarning("MultiByteToWideChar cannot convert multibyte text");
break;
}
}

@ -225,7 +225,7 @@ public:
static bool networkOrdered() {
int wordSize;
bool bigEndian = FALSE;
qSysInfo( &wordSize, &bigEndian );
tqSysInfo( &wordSize, &bigEndian );
return bigEndian;
}

@ -64,7 +64,7 @@ public:
QStrList& operator=( const QStrList & );
private:
QPtrCollection::Item newItem( QPtrCollection::Item d ) { return dc ? qstrdup( (const char*)d ) : d; }
QPtrCollection::Item newItem( QPtrCollection::Item d ) { return dc ? tqstrdup( (const char*)d ) : d; }
void deleteItem( QPtrCollection::Item d ) { if ( del_item ) delete[] (char*)d; }
int compareItems( QPtrCollection::Item s1, QPtrCollection::Item s2 ) { return qstrcmp((const char*)s1,
(const char*)s2); }
@ -85,7 +85,7 @@ public:
~QStrIList() { clear(); }
private:
int compareItems( QPtrCollection::Item s1, QPtrCollection::Item s2 )
{ return qstricmp((const char*)s1,
{ return tqstricmp((const char*)s1,
(const char*)s2); }
};

@ -54,7 +54,7 @@ public:
QStrVec( uint size, bool deepc = TRUE ) : QPtrVector<char>(size) {dc=deepc;}
~QStrVec() { clear(); }
private:
Item newItem( Item d ) { return dc ? qstrdup( (const char*)d ) : d; }
Item newItem( Item d ) { return dc ? tqstrdup( (const char*)d ) : d; }
void deleteItem( Item d ) { if ( dc ) delete[] (char*)d; }
int compareItems( Item s1, Item s2 )
{ return qstrcmp((const char*)s1,
@ -77,7 +77,7 @@ public:
~QStrIVec() { clear(); }
private:
int compareItems( Item s1, Item s2 )
{ return qstricmp((const char*)s1,
{ return tqstricmp((const char*)s1,
(const char*)s2); }
};

@ -185,7 +185,7 @@
#if defined(QT_CHECK_STATE)
#undef CHECK_STREAM_PRECOND
#define CHECK_STREAM_PRECOND if ( !dev ) { \
qWarning( "QTextStream: No device" ); \
tqWarning( "QTextStream: No device" ); \
return *this; }
#else
#define CHECK_STREAM_PRECOND
@ -327,13 +327,13 @@ bool QStringBuffer::open( int m )
{
if ( !s ) {
#if defined(QT_CHECK_STATE)
qWarning( "QStringBuffer::open: No string" );
tqWarning( "QStringBuffer::open: No string" );
#endif
return FALSE;
}
if ( isOpen() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QStringBuffer::open: Buffer already open" );
tqWarning( "QStringBuffer::open: Buffer already open" );
#endif
return FALSE;
}
@ -377,16 +377,16 @@ bool QStringBuffer::at( Offset pos )
{
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) {
qWarning( "QStringBuffer::at: Buffer is not open" );
tqWarning( "QStringBuffer::at: Buffer is not open" );
return FALSE;
}
#endif
if ( pos >= s->length()*2 ) {
#if defined(QT_CHECK_RANGE)
#if defined(QT_ABI_QT4)
qWarning( "QStringBuffer::at: Index %lld out of range", pos );
tqWarning( "QStringBuffer::at: Index %lld out of range", pos );
#else
qWarning( "QStringBuffer::at: Index %lu out of range", pos );
tqWarning( "QStringBuffer::at: Index %lu out of range", pos );
#endif
#endif
return FALSE;
@ -401,11 +401,11 @@ Q_LONG QStringBuffer::readBlock( char *p, Q_ULONG len )
#if defined(QT_CHECK_STATE)
Q_CHECK_PTR( p );
if ( !isOpen() ) {
qWarning( "QStringBuffer::readBlock: Buffer not open" );
tqWarning( "QStringBuffer::readBlock: Buffer not open" );
return -1;
}
if ( !isReadable() ) {
qWarning( "QStringBuffer::readBlock: Read operation not permitted" );
tqWarning( "QStringBuffer::readBlock: Read operation not permitted" );
return -1;
}
#endif
@ -427,23 +427,23 @@ Q_LONG QStringBuffer::writeBlock( const char *p, Q_ULONG len )
{
#if defined(QT_CHECK_NULL)
if ( p == 0 && len != 0 )
qWarning( "QStringBuffer::writeBlock: Null pointer error" );
tqWarning( "QStringBuffer::writeBlock: Null pointer error" );
#endif
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) {
qWarning( "QStringBuffer::writeBlock: Buffer not open" );
tqWarning( "QStringBuffer::writeBlock: Buffer not open" );
return -1;
}
if ( !isWritable() ) {
qWarning( "QStringBuffer::writeBlock: Write operation not permitted" );
tqWarning( "QStringBuffer::writeBlock: Write operation not permitted" );
return -1;
}
if ( ioIndex&1 ) {
qWarning( "QStringBuffer::writeBlock: non-even index - non Unicode" );
tqWarning( "QStringBuffer::writeBlock: non-even index - non Unicode" );
return -1;
}
if ( len&1 ) {
qWarning( "QStringBuffer::writeBlock: non-even length - non Unicode" );
tqWarning( "QStringBuffer::writeBlock: non-even length - non Unicode" );
return -1;
}
#endif
@ -456,11 +456,11 @@ int QStringBuffer::getch()
{
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) {
qWarning( "QStringBuffer::getch: Buffer not open" );
tqWarning( "QStringBuffer::getch: Buffer not open" );
return -1;
}
if ( !isReadable() ) {
qWarning( "QStringBuffer::getch: Read operation not permitted" );
tqWarning( "QStringBuffer::getch: Read operation not permitted" );
return -1;
}
#endif
@ -484,11 +484,11 @@ int QStringBuffer::ungetch( int ch )
{
#if defined(QT_CHECK_STATE)
if ( !isOpen() ) {
qWarning( "QStringBuffer::ungetch: Buffer not open" );
tqWarning( "QStringBuffer::ungetch: Buffer not open" );
return -1;
}
if ( !isReadable() ) {
qWarning( "QStringBuffer::ungetch: Read operation not permitted" );
tqWarning( "QStringBuffer::ungetch: Read operation not permitted" );
return -1;
}
#endif
@ -1702,7 +1702,7 @@ QString QTextStream::readLine()
{
#if defined(QT_CHECK_STATE)
if ( !dev ) {
qWarning( "QTextStream::readLine: No device" );
tqWarning( "QTextStream::readLine: No device" );
return QString::null;
}
#endif
@ -1785,7 +1785,7 @@ QString QTextStream::read()
{
#if defined(QT_CHECK_STATE)
if ( !dev ) {
qWarning( "QTextStream::read: No device" );
tqWarning( "QTextStream::read: No device" );
return QString::null;
}
#endif

@ -80,7 +80,7 @@ QThreadStorageData::QThreadStorageData( void (*func)( void * ) )
thread_storage_usage[id].func = func;
#ifdef QTHREADSTORAGE_DEBUG
qDebug( "QThreadStorageData: allocated id %d", id );
tqDebug( "QThreadStorageData: allocated id %d", id );
#endif // QTHREADSTORAGE_DEBUG
pthread_mutex_unlock( &thread_storage_mutex );
@ -93,7 +93,7 @@ QThreadStorageData::~QThreadStorageData()
thread_storage_usage[id].func = 0;
#ifdef QTHREADSTORAGE_DEBUG
qDebug( "QThreadStorageData: released id %d", id );
tqDebug( "QThreadStorageData: released id %d", id );
#endif // QTHREADSTORAGE_DEBUG
pthread_mutex_unlock( &thread_storage_mutex );
@ -103,7 +103,7 @@ void **QThreadStorageData::get() const
{
QThreadInstance *d = QThreadInstance::current();
if (!d) {
qWarning("QThreadStorage can only be used with threads started with QThread");
tqWarning("QThreadStorage can only be used with threads started with QThread");
return 0;
}
QMutexLocker locker( d->mutex() );
@ -114,13 +114,13 @@ void **QThreadStorageData::set( void *p )
{
QThreadInstance *d = QThreadInstance::current();
if (!d) {
qWarning("QThreadStorage can only be used with threads started with QThread");
tqWarning("QThreadStorage can only be used with threads started with QThread");
return 0;
}
QMutexLocker locker( d->mutex() );
if ( !d->thread_storage ) {
#ifdef QTHREADSTORAGE_DEBUG
qDebug( "QThreadStorageData: allocating storage for thread %lx",
tqDebug( "QThreadStorageData: allocating storage for thread %lx",
(unsigned long) pthread_self() );
#endif // QTHREADSTORAGE_DEBUG
@ -142,7 +142,7 @@ void QThreadStorageData::finish( void **thread_storage )
if ( ! thread_storage ) return; // nothing to do
#ifdef QTHREADSTORAGE_DEBUG
qDebug( "QThreadStorageData: destroying storage for thread %lx",
tqDebug( "QThreadStorageData: destroying storage for thread %lx",
(unsigned long) pthread_self() );
#endif // QTHREADSTORAGE_DEBUG
@ -150,7 +150,7 @@ void QThreadStorageData::finish( void **thread_storage )
if ( ! thread_storage[i] ) continue;
if ( ! thread_storage_usage[i].used ) {
#ifdef QT_CHECK_STATE
qWarning( "QThreadStorage: thread %lx exited after QThreadStorage destroyed",
tqWarning( "QThreadStorage: thread %lx exited after QThreadStorage destroyed",
(unsigned long) pthread_self() );
#endif // QT_CHECK_STATE
continue;

@ -514,7 +514,7 @@ bool QUType_QString::convertTo( QUObject *o, QUType *t )
{
QString *str = (QString *)o->payload.ptr;
if ( isEqual( t, &static_QUType_charstar ) ) {
o->payload.charstar.ptr = qstrdup( str->local8Bit().data() );
o->payload.charstar.ptr = tqstrdup( str->local8Bit().data() );
o->payload.charstar.owner = TRUE;
o->type = &static_QUType_charstar;
} else if ( isEqual( t, &static_QUType_int ) ) {

@ -396,7 +396,7 @@ Q_INLINE_TEMPLATES void QValueListPrivate<T>::clear()
#ifdef QT_CHECK_RANGE
# if !defined( QT_NO_DEBUG ) && defined( QT_CHECK_VALUELIST_RANGE )
# define QT_CHECK_INVALID_LIST_ELEMENT if ( empty() ) qWarning( "QValueList: Warning invalid element" )
# define QT_CHECK_INVALID_LIST_ELEMENT if ( empty() ) tqWarning( "QValueList: Warning invalid element" )
# define QT_CHECK_INVALID_LIST_ELEMENT_FATAL Q_ASSERT( !empty() );
# else
# define QT_CHECK_INVALID_LIST_ELEMENT

@ -153,7 +153,7 @@ QWaitCondition::QWaitCondition()
#ifdef QT_CHECK_RANGE
if (ret)
qWarning( "Wait condition init failure: %s", strerror( ret ) );
tqWarning( "Wait condition init failure: %s", strerror( ret ) );
#endif
}
@ -167,7 +167,7 @@ QWaitCondition::~QWaitCondition()
if (ret) {
#ifdef QT_CHECK_RANGE
qWarning( "Wait condition destroy failure: %s", strerror( ret ) );
tqWarning( "Wait condition destroy failure: %s", strerror( ret ) );
#endif
// seems we have threads waiting on us, lets wake them up
@ -190,7 +190,7 @@ void QWaitCondition::wakeOne()
#ifdef QT_CHECK_RANGE
if (ret)
qWarning("Wait condition wakeOne failure: %s", strerror(ret));
tqWarning("Wait condition wakeOne failure: %s", strerror(ret));
#endif
}
@ -207,7 +207,7 @@ void QWaitCondition::wakeAll()
#ifdef QT_CHECK_RANGE
if (ret)
qWarning("Wait condition wakeAll failure: %s", strerror(ret));
tqWarning("Wait condition wakeAll failure: %s", strerror(ret));
#endif
}
@ -246,7 +246,7 @@ bool QWaitCondition::wait(unsigned long time)
#ifdef QT_CHECK_RANGE
if (ret && ret != ETIMEDOUT)
qWarning("Wait condition wait failure: %s",strerror(ret));
tqWarning("Wait condition wait failure: %s",strerror(ret));
#endif
pthread_mutex_unlock( &mutex );
@ -285,7 +285,7 @@ bool QWaitCondition::wait(QMutex *mutex, unsigned long time)
if (mutex->d->type() == Q_MUTEX_RECURSIVE) {
#ifdef QT_CHECK_RANGE
qWarning("Wait condition warning: using recursive mutexes with\n"
tqWarning("Wait condition warning: using recursive mutexes with\n"
" wait conditions is undefined!");
#endif
return FALSE;
@ -307,7 +307,7 @@ bool QWaitCondition::wait(QMutex *mutex, unsigned long time)
#ifdef QT_CHECK_RANGE
if (ret && ret != ETIMEDOUT)
qWarning("Wait condition wait failure: %s",strerror(ret));
tqWarning("Wait condition wait failure: %s",strerror(ret));
#endif
return (ret == 0);

@ -785,7 +785,7 @@ void QAction::setAccel( const QKeySequence& key )
}
#if defined(QT_CHECK_STATE)
else
qWarning( "QAction::setAccel() (%s) requires widget in parent chain", name() );
tqWarning( "QAction::setAccel() (%s) requires widget in parent chain", name() );
#endif
d->update();
}
@ -841,7 +841,7 @@ void QAction::activate()
{
if ( isToggleAction() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QAction::%s() (%s) Toggle actions "
tqWarning( "QAction::%s() (%s) Toggle actions "
"can not be activated", "activate", name() );
#endif
return;
@ -858,7 +858,7 @@ void QAction::toggle()
{
if ( !isToggleAction() ) {
#if defined(QT_CHECK_STATE)
qWarning( "QAction::%s() (%s) Only toggle actions "
tqWarning( "QAction::%s() (%s) Only toggle actions "
"can be switched", "toggle", name() );
#endif
return;
@ -882,7 +882,7 @@ void QAction::setOn( bool enable )
if ( !isToggleAction() ) {
#if defined(QT_CHECK_STATE)
if ( enable )
qWarning( "QAction::%s() (%s) Only toggle actions "
tqWarning( "QAction::%s() (%s) Only toggle actions "
"can be switched", "setOn", name() );
#endif
return;
@ -1066,7 +1066,7 @@ bool QAction::addTo( QWidget* w )
d->update( QActionPrivate::State | QActionPrivate::EverythingElse );
} else {
qWarning( "QAction::addTo(), unknown object" );
tqWarning( "QAction::addTo(), unknown object" );
return FALSE;
}
return TRUE;
@ -1226,7 +1226,7 @@ bool QAction::removeFrom( QWidget* w )
}
}
} else {
qWarning( "QAction::removeFrom(), unknown object" );
tqWarning( "QAction::removeFrom(), unknown object" );
return FALSE;
}
return TRUE;

@ -631,7 +631,7 @@ void QButton::setState( ToggleState s )
{
if ( !toggleTyp ) {
#if defined(QT_CHECK_STATE)
qWarning( "QButton::setState() / setOn: (%s) Only toggle buttons "
tqWarning( "QButton::setState() / setOn: (%s) Only toggle buttons "
"may be switched", name( "unnamed" ) );
#endif
return;

@ -469,7 +469,7 @@ static inline bool checkInsertIndex( const char *method, const char * name,
bool range_err = (*index > count);
#if defined(QT_CHECK_RANGE)
if ( range_err )
qWarning( "QComboBox::%s: (%s) Index %d out of range",
tqWarning( "QComboBox::%s: (%s) Index %d out of range",
method, name ? name : "<no name>", *index );
#else
Q_UNUSED( method )
@ -487,7 +487,7 @@ static inline bool checkIndex( const char *method, const char * name,
bool range_err = (index >= count);
#if defined(QT_CHECK_RANGE)
if ( range_err )
qWarning( "QComboBox::%s: (%s) Index %i out of range",
tqWarning( "QComboBox::%s: (%s) Index %i out of range",
method, name ? name : "<no name>", index );
#else
Q_UNUSED( method )

@ -2118,7 +2118,7 @@ void QTimeEdit::stepUp()
default:
accepted = FALSE;
#ifdef QT_CHECK_RANGE
qWarning( "QTimeEdit::stepUp: Focus section out of range!" );
tqWarning( "QTimeEdit::stepUp: Focus section out of range!" );
#endif
break;
}
@ -2170,7 +2170,7 @@ void QTimeEdit::stepDown()
default:
accepted = FALSE;
#ifdef QT_CHECK_RANGE
qWarning( "QTimeEdit::stepDown: Focus section out of range!" );
tqWarning( "QTimeEdit::stepDown: Focus section out of range!" );
#endif
break;
}

@ -84,7 +84,7 @@ void
QDialogButtons::init(Q_UINT32 buttons, Orientation orient)
{
if(buttons == All) {
qWarning("QDialogButtons: cannot specify All by itself!");
tqWarning("QDialogButtons: cannot specify All by itself!");
buttons = None;
}
d = new QDialogButtonsPrivate;
@ -173,7 +173,7 @@ void
QDialogButtons::setDefaultButton(Button button)
{
if(!((int)(d->visible & button) == button)) {
qWarning("QDialogButtons: Button '%d' is not visible (so cannot be default)", button);
tqWarning("QDialogButtons: Button '%d' is not visible (so cannot be default)", button);
return;
}
if(d->def != button) {

@ -766,21 +766,21 @@ void QDockArea::moveDockWindow( QDockWindow *w, const QPoint &p, const QRect &r,
insertLine = TRUE;
#if defined(QDOCKAREA_DEBUG)
qDebug( "insert in line %d, and insert that line: %d", dockLine, insertLine );
qDebug( " (btw, we have %d lines)", lines.count() );
tqDebug( "insert in line %d, and insert that line: %d", dockLine, insertLine );
tqDebug( " (btw, we have %d lines)", lines.count() );
#endif
QDockWindow *dw = 0;
if ( dockLine >= (int)lines.count() ) { // insert after last line
dockWindows->append( dockWindow );
dockWindow->setNewLine( TRUE );
#if defined(QDOCKAREA_DEBUG)
qDebug( "insert at the end" );
tqDebug( "insert at the end" );
#endif
} else if ( dockLine == 0 && insertLine ) { // insert before first line
dockWindows->insert( 0, dockWindow );
dockWindows->at( 1 )->setNewLine( TRUE );
#if defined(QDOCKAREA_DEBUG)
qDebug( "insert at the begin" );
tqDebug( "insert at the begin" );
#endif
} else { // insert somewhere in between
// make sure each line start has a new line
@ -790,7 +790,7 @@ void QDockArea::moveDockWindow( QDockWindow *w, const QPoint &p, const QRect &r,
// find the index of the first widget in the search line
int searchLine = dockLine;
#if defined(QDOCKAREA_DEBUG)
qDebug( "search line start of %d", searchLine );
tqDebug( "search line start of %d", searchLine );
#endif
QDockWindow *lsw = lineStarts.at( searchLine );
int index = dockWindows->find( lsw );
@ -803,7 +803,7 @@ void QDockArea::moveDockWindow( QDockWindow *w, const QPoint &p, const QRect &r,
(void)dockWindows->at( index ); // move current to index
}
#if defined(QDOCKAREA_DEBUG)
qDebug( " which starts at %d", index );
tqDebug( " which starts at %d", index );
#endif
if ( !insertLine ) { // if we insert the docking widget in the existing line
// find the index for the widget
@ -825,7 +825,7 @@ void QDockArea::moveDockWindow( QDockWindow *w, const QPoint &p, const QRect &r,
firstTime = FALSE;
}
#if defined(QDOCKAREA_DEBUG)
qDebug( "insert at index: %d", index );
tqDebug( "insert at index: %d", index );
#endif
// if we insert it just before a widget which has a new line, transfer the newline to the docking widget
// but not if we didn't only mave a widget in its line which was alone in the line before
@ -833,7 +833,7 @@ void QDockArea::moveDockWindow( QDockWindow *w, const QPoint &p, const QRect &r,
&& index >= 0 && index < (int)dockWindows->count() &&
dockWindows->at( index )->newLine() && lineOf( index ) == dockLine ) {
#if defined(QDOCKAREA_DEBUG)
qDebug( "get rid of the old newline and get me one" );
tqDebug( "get rid of the old newline and get me one" );
#endif
dockWindows->at( index )->setNewLine( FALSE );
dockWindow->setNewLine( TRUE );
@ -844,18 +844,18 @@ void QDockArea::moveDockWindow( QDockWindow *w, const QPoint &p, const QRect &r,
}
} else { // insert in a new line, so make sure the dock widget and the widget which will be after it have a newline
#if defined(QDOCKAREA_DEBUG)
qDebug( "insert a new line" );
tqDebug( "insert a new line" );
#endif
if ( index < (int)dockWindows->count() ) {
#if defined(QDOCKAREA_DEBUG)
qDebug( "give the widget at %d a newline", index );
tqDebug( "give the widget at %d a newline", index );
#endif
QDockWindow* nldw = dockWindows->at( index );
if ( nldw )
nldw->setNewLine( TRUE );
}
#if defined(QDOCKAREA_DEBUG)
qDebug( "give me a newline" );
tqDebug( "give me a newline" );
#endif
dockWindow->setNewLine( TRUE );
}

@ -826,7 +826,7 @@ void QHeader::mouseMoveEvent( QMouseEvent *e )
break;
}
default:
qWarning( "QHeader::mouseMoveEvent: (%s) unknown state", name() );
tqWarning( "QHeader::mouseMoveEvent: (%s) unknown state", name() );
break;
}
}

@ -375,14 +375,14 @@ void QLCDNumber::setNumDigits( int numDigits )
{
if ( numDigits > 99 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QLCDNumber::setNumDigits: (%s) Max 99 digits allowed",
tqWarning( "QLCDNumber::setNumDigits: (%s) Max 99 digits allowed",
name( "unnamed" ) );
#endif
numDigits = 99;
}
if (numDigits < 0 ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QLCDNumber::setNumDigits: (%s) Min 0 digits allowed",
tqWarning( "QLCDNumber::setNumDigits: (%s) Min 0 digits allowed",
name( "unnamed" ) );
#endif
numDigits = 0;
@ -976,7 +976,7 @@ void QLCDNumber::drawSegment( const QPoint &pos, char segmentNo, QPainter &p,
break;
#if defined(QT_CHECK_RANGE)
default :
qWarning( "QLCDNumber::drawSegment: (%s) Internal error."
tqWarning( "QLCDNumber::drawSegment: (%s) Internal error."
" Illegal segment id: %d\n",
name( "unnamed" ), segmentNo );
#endif
@ -1111,7 +1111,7 @@ void QLCDNumber::drawSegment( const QPoint &pos, char segmentNo, QPainter &p,
break;
#if defined(QT_CHECK_RANGE)
default :
qWarning( "QLCDNumber::drawSegment: (%s) Internal error."
tqWarning( "QLCDNumber::drawSegment: (%s) Internal error."
" Illegal segment id: %d\n",
name( "unnamed" ), segmentNo );
#endif

@ -3789,14 +3789,14 @@ void QListBox::viewportPaintEvent( QPaintEvent * e )
// this stuff has been useful enough times that from now I'm
// leaving it in the source.
uint i = 0;
qDebug( "%s/%s: %i rects", className(), name(), r.rects().size() );
tqDebug( "%s/%s: %i rects", className(), name(), r.rects().size() );
while( i < r.rects().size() ) {
qDebug( "rect %d: %d, %d, %d, %d", i,
tqDebug( "rect %d: %d, %d, %d, %d", i,
r.rects()[i].left(), r.rects()[i].top(),
r.rects()[i].width(), r.rects()[i].height() );
i++;
}
qDebug( "" );
tqDebug( "" );
}
#endif
@ -3977,7 +3977,7 @@ QRect QListBox::itemRect( QListBoxItem *item ) const
*/
int QListBox::inSort( const QListBoxItem * lbi )
{
qObsolete( "QListBox", "inSort", "insertItem" );
tqObsolete( "QListBox", "inSort", "insertItem" );
if ( !lbi )
return -1;
@ -4009,7 +4009,7 @@ int QListBox::inSort( const QListBoxItem * lbi )
*/
int QListBox::inSort( const QString& text )
{
qObsolete( "QListBox", "inSort", "insertItem" );
tqObsolete( "QListBox", "inSort", "insertItem" );
return inSort( new QListBoxText(text) );
}
@ -4160,7 +4160,7 @@ void QListBox::showEvent( QShowEvent * )
*/
bool QListBox::itemYPos( int index, int *yPos ) const
{
qObsolete( "QListBox", "itemYPos" );
tqObsolete( "QListBox", "itemYPos" );
QListBoxItem* i = item(index);
if ( !i )
return FALSE;

@ -6048,7 +6048,7 @@ QCheckListItem::QCheckListItem( QCheckListItem *parent, const QString &text,
init();
if ( myType == RadioButton ) {
if ( parent->type() != RadioButtonController )
qWarning( "QCheckListItem::QCheckListItem(), radio button must be "
tqWarning( "QCheckListItem::QCheckListItem(), radio button must be "
"child of a controller" );
else
d->exclusive = parent;
@ -6069,7 +6069,7 @@ QCheckListItem::QCheckListItem( QCheckListItem *parent, QListViewItem *after,
init();
if ( myType == RadioButton ) {
if ( parent->type() != RadioButtonController )
qWarning( "QCheckListItem::QCheckListItem(), radio button must be "
tqWarning( "QCheckListItem::QCheckListItem(), radio button must be "
"child of a controller" );
else
d->exclusive = parent;
@ -6088,7 +6088,7 @@ QCheckListItem::QCheckListItem( QListViewItem *parent, const QString &text,
{
myType = tt;
if ( myType == RadioButton ) {
qWarning( "QCheckListItem::QCheckListItem(), radio button must be "
tqWarning( "QCheckListItem::QCheckListItem(), radio button must be "
"child of a QCheckListItem" );
}
init();
@ -6107,7 +6107,7 @@ QCheckListItem::QCheckListItem( QListViewItem *parent, QListViewItem *after,
{
myType = tt;
if ( myType == RadioButton ) {
qWarning( "QCheckListItem::QCheckListItem(), radio button must be "
tqWarning( "QCheckListItem::QCheckListItem(), radio button must be "
"child of a QCheckListItem" );
}
init();
@ -6125,7 +6125,7 @@ QCheckListItem::QCheckListItem( QListView *parent, const QString &text,
{
myType = tt;
if ( tt == RadioButton )
qWarning( "QCheckListItem::QCheckListItem(), radio button must be "
tqWarning( "QCheckListItem::QCheckListItem(), radio button must be "
"child of a QCheckListItem" );
init();
}
@ -6142,7 +6142,7 @@ QCheckListItem::QCheckListItem( QListView *parent, QListViewItem *after,
{
myType = tt;
if ( tt == RadioButton )
qWarning( "QCheckListItem::QCheckListItem(), radio button must be "
tqWarning( "QCheckListItem::QCheckListItem(), radio button must be "
"child of a QCheckListItem" );
init();
}
@ -6236,7 +6236,7 @@ QCheckListItem::~QCheckListItem()
void QCheckListItem::setTristate( bool b )
{
if ( ( myType != CheckBoxController ) && ( myType != CheckBox ) ) {
qWarning( "QCheckListItem::setTristate(), has no effect on RadioButton "
tqWarning( "QCheckListItem::setTristate(), has no effect on RadioButton "
"or RadioButtonController." );
return;
}
@ -7733,7 +7733,7 @@ QListViewItemIterator &QListViewItemIterator::operator-=( int j )
QListViewItem* QListViewItemIterator::operator*()
{
if ( curr != 0 && !matchesFlags( curr ) )
qWarning( "QListViewItemIterator::operator*() curr out of sync" );
tqWarning( "QListViewItemIterator::operator*() curr out of sync" );
return curr;
}
@ -7744,7 +7744,7 @@ QListViewItem* QListViewItemIterator::operator*()
QListViewItem *QListViewItemIterator::current() const
{
if ( curr != 0 && !matchesFlags( curr ) )
qWarning( "QListViewItemIterator::current() curr out of sync" );
tqWarning( "QListViewItemIterator::current() curr out of sync" );
return curr;
}

@ -813,7 +813,7 @@ void QMenuData::removeItemAt( int index )
{
if ( index < 0 || index >= (int)mitems->count() ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QMenuData::removeItem: Index %d out of range", index );
tqWarning( "QMenuData::removeItem: Index %d out of range", index );
#endif
return;
}

@ -112,7 +112,7 @@ static void cleanup()
static void popupSubMenuLater( int msec, QPopupMenu * receiver ) {
if ( !singleSingleShot ) {
singleSingleShot = new QTimer( qApp, "popup submenu timer" );
qAddPostRoutine( cleanup );
tqAddPostRoutine( cleanup );
}
singleSingleShot->disconnect( SIGNAL(timeout()) );
@ -1163,7 +1163,7 @@ QSize QPopupMenu::updateSize(bool force_update, bool do_resize)
#if defined(QT_CHECK_NULL)
if ( mi->text().isNull() && !mi->pixmap() && !mi->iconSet() &&
!mi->isSeparator() && !mi->widget() && !mi->custom() )
qWarning( "QPopupMenu: (%s) Popup has invalid menu item",
tqWarning( "QPopupMenu: (%s) Popup has invalid menu item",
name( "unnamed" ) );
#endif
}

@ -348,7 +348,7 @@ void QRangeControl::setRange( int minValue, int maxValue )
{
if ( minValue > maxValue ) {
#if defined(QT_CHECK_RANGE)
qWarning( "QRangeControl::setRange: minValue %d > maxValue %d",
tqWarning( "QRangeControl::setRange: minValue %d > maxValue %d",
minValue, maxValue );
#endif
maxValue = minValue;

@ -1388,7 +1388,7 @@ void QScrollView::addChild(QWidget* child, int x, int y)
{
if ( !child ) {
#if defined(QT_CHECK_NULL)
qWarning( "QScrollView::addChild(): Cannot add null child" );
tqWarning( "QScrollView::addChild(): Cannot add null child" );
#endif
return;
}
@ -2589,7 +2589,7 @@ void QScrollView::enableClipper(bool y)
if ( !d->clipped_viewport == !y )
return;
if ( d->children.count() )
qFatal("May only call QScrollView::enableClipper() before adding widgets");
tqFatal("May only call QScrollView::enableClipper() before adding widgets");
if ( y ) {
d->clipped_viewport = new QClipperWidget(clipper(), "qt_clipped_viewport", d->flags);
d->clipped_viewport->setGeometry(-coord_limit/2,-coord_limit/2,

@ -601,7 +601,7 @@ void QSlider::resetState()
case Idle:
break;
default:
qWarning("QSlider: (%s) in wrong state", name( "unnamed" ) );
tqWarning("QSlider: (%s) in wrong state", name( "unnamed" ) );
}
state = Idle;
}

@ -194,7 +194,7 @@ void QStatusBar::addWidget( QWidget * widget, int stretch, bool permanent )
{
if ( !widget ) {
#if defined(QT_CHECK_NULL)
qWarning( "QStatusBar::addWidget(): Cannot add null widget" );
tqWarning( "QStatusBar::addWidget(): Cannot add null widget" );
#endif
return;
}
@ -246,7 +246,7 @@ void QStatusBar::removeWidget( QWidget* widget )
reformat();
#if defined(QT_DEBUG)
else
qDebug( "QStatusBar::removeWidget(): Widget not found." );
tqDebug( "QStatusBar::removeWidget(): Widget not found." );
#endif
}

@ -251,11 +251,11 @@ void QTextBrowser::setSource(const QString& name)
const QMimeSource* m =
mimeSourceFactory()->data( source, context() );
if ( !m ){
qWarning("QTextBrowser: no mimesource for %s", source.latin1() );
tqWarning("QTextBrowser: no mimesource for %s", source.latin1() );
}
else {
if ( !QTextDrag::decode( m, txt ) ) {
qWarning("QTextBrowser: cannot decode %s", source.latin1() );
tqWarning("QTextBrowser: cannot decode %s", source.latin1() );
}
}
if ( isVisible() ) {

@ -5069,7 +5069,7 @@ void QTextEdit::updateStyles()
void QTextEdit::setDocument( QTextDocument *dc )
{
if ( dc == 0 ) {
qWarning( "Q3TextEdit::setDocument() called with null Q3TextDocument pointer" );
tqWarning( "Q3TextEdit::setDocument() called with null Q3TextDocument pointer" );
return;
}
if ( dc == doc )
@ -6452,7 +6452,7 @@ void QTextEdit::optimParseTags( QString * line, int lineNo, int indexOffset )
cur = tag->prev;
if ( !cur ) {
#ifdef QT_CHECK_RANGE
qWarning( "QTextEdit::optimParseTags: no left-tag for '<%s>' in line %d.", tag->tag.ascii(), tag->line + 1 );
tqWarning( "QTextEdit::optimParseTags: no left-tag for '<%s>' in line %d.", tag->tag.ascii(), tag->line + 1 );
#endif
return; // something is wrong - give up
}
@ -6475,7 +6475,7 @@ void QTextEdit::optimParseTags( QString * line, int lineNo, int indexOffset )
break;
} else if ( !cur->leftTag ) {
#ifdef QT_CHECK_RANGE
qWarning( "QTextEdit::optimParseTags: mismatching %s-tag for '<%s>' in line %d.", cur->tag[0] == '/' ? "left" : "right", cur->tag.ascii(), cur->line + 1 );
tqWarning( "QTextEdit::optimParseTags: mismatching %s-tag for '<%s>' in line %d.", cur->tag[0] == '/' ? "left" : "right", cur->tag.ascii(), cur->line + 1 );
#endif
return; // something is amiss - give up
}
@ -6956,9 +6956,9 @@ void QTextEdit::optimDrawContents( QPainter * p, int clipx, int clipy,
// useful debug info
//
// tag = d->od->tags;
// qWarning("###");
// tqWarning("###");
// while ( tag ) {
// qWarning( "Tag: %p, parent: %09p, leftTag: %09p, Name: %-15s, ParentName: %s, %d%d%d", tag,
// tqWarning( "Tag: %p, parent: %09p, leftTag: %09p, Name: %-15s, ParentName: %s, %d%d%d", tag,
// tag->parent, tag->leftTag, tag->tag.latin1(), tag->parent ? tag->parent->tag.latin1():"<none>",
// tag->bold, tag->italic, tag->underline );
// tag = tag->next;

@ -716,10 +716,10 @@ void QToolButton::setOnIconSet( const QIconSet& set )
{
setIconSet( set );
/*
### Get rid of all qWarning in this file in 4.0.
### Get rid of all tqWarning in this file in 4.0.
Also consider inlining the obsolete functions then.
*/
qWarning( "QToolButton::setOnIconSet(): This function is not supported"
tqWarning( "QToolButton::setOnIconSet(): This function is not supported"
" anymore" );
}
@ -790,7 +790,7 @@ void QToolButton::setIconSet( const QIconSet & set )
void QToolButton::setIconSet( const QIconSet & set, bool /* on */ )
{
setIconSet( set );
qWarning( "QToolButton::setIconSet(): 'on' parameter ignored" );
tqWarning( "QToolButton::setIconSet(): 'on' parameter ignored" );
}
#endif

@ -417,7 +417,7 @@ void QWhatsThat::paintEvent( QPaintEvent* )
QWhatsThisPrivate::WhatsThisItem::~WhatsThisItem()
{
if ( count )
qFatal( "QWhatsThis: Internal error (%d)", count );
tqFatal( "QWhatsThis: Internal error (%d)", count );
delete whatsthis;
}
@ -617,7 +617,7 @@ void QWhatsThisPrivate::setUpWhatsThis()
// It is necessary to use a post routine, because
// the destructor deletes pixmaps and other stuff that
// needs a working X connection under X11.
qAddPostRoutine( qWhatsThisPrivateCleanup );
tqAddPostRoutine( qWhatsThisPrivateCleanup );
}
}

@ -976,7 +976,7 @@ void QWorkspace::showEvent( QShowEvent *e )
dw->move(dw->mapToGlobal(QPoint(0, 0)));
d->newdocks.append(dw);
} else {
qDebug("not sure what to do with %s %s", (*dock_it)->className(),
tqDebug("not sure what to do with %s %s", (*dock_it)->className(),
(*dock_it)->name());
}
}
@ -1316,7 +1316,7 @@ bool QWorkspace::eventFilter( QObject *o, QEvent * e)
::qt_cast<QDockArea*>(o) && !((QWidget*)o)->isVisible()) {
QChildEvent *ce = (QChildEvent*)e;
if(!::qt_cast<QDockWindow*>(ce->child())) {
qDebug("No idea what to do..");
tqDebug("No idea what to do..");
return FALSE;
}
QDockWindow *w = (QDockWindow*)ce->child();

@ -3686,7 +3686,7 @@ static QString encodeAttr( const QString& str )
i += 4;
} else if (!isXmlChar(tmp[(int)i])) {
QString repl = "&#x" + QString::number(tmp[(int)i].unicode(), 16) + ';';
qWarning("QDom: saving invalid character %s, the document will not be well-formed", repl.latin1());
tqWarning("QDom: saving invalid character %s, the document will not be well-formed", repl.latin1());
tmp.replace(i, 1, repl);
len += repl.length() - 1;
i += repl.length();
@ -4651,7 +4651,7 @@ QDomNodePrivate* QDomTextPrivate::cloneNode( bool deep)
QDomTextPrivate* QDomTextPrivate::splitText( int offset )
{
if ( !parent() ) {
qWarning( "QDomText::splitText The node has no parent. So I can not split" );
tqWarning( "QDomText::splitText The node has no parent. So I can not split" );
return 0;
}

@ -187,13 +187,13 @@ bool QSvgDevice::play( QPainter *painter )
pt->setPen( Qt::NoPen ); // SVG default pen and brush
pt->setBrush( Qt::black );
if ( doc.isNull() ) {
qWarning( "QSvgDevice::play: No SVG data set." );
tqWarning( "QSvgDevice::play: No SVG data set." );
return FALSE;
}
QDomNode svg = doc.namedItem( "svg" );
if ( svg.isNull() || !svg.isElement() ) {
qWarning( "QSvgDevice::play: Couldn't find any svg element." );
tqWarning( "QSvgDevice::play: Couldn't find any svg element." );
return FALSE;
}
@ -221,7 +221,7 @@ bool QSvgDevice::play( QPainter *painter )
QRegExp re( QString::fromLatin1("\\s*(\\S+)\\s*,?\\s*(\\S+)\\s*,?"
"\\s*(\\S+)\\s*,?\\s*(\\S+)\\s*") );
if ( re.search( attr.namedItem( "viewBox" ).nodeValue() ) < 0 ) {
qWarning( "QSvgDevice::play: Invalid viewBox attribute.");
tqWarning( "QSvgDevice::play: Invalid viewBox attribute.");
return FALSE;
} else {
double x = re.cap( 1 ).toDouble();
@ -229,7 +229,7 @@ bool QSvgDevice::play( QPainter *painter )
double w = re.cap( 3 ).toDouble();
double h = re.cap( 4 ).toDouble();
if ( w < 0 || h < 0 ) {
qWarning( "QSvgDevice::play: Invalid viewBox dimension.");
tqWarning( "QSvgDevice::play: Invalid viewBox dimension.");
return FALSE;
} else if ( w == 0 || h == 0 ) {
return TRUE;
@ -353,7 +353,7 @@ bool QSvgDevice::save( QIODevice *dev )
{
#if defined(CHECK_RANGE)
if ( !d->images.isEmpty() || !d->pixmaps.isEmpty() )
qWarning( "QSvgDevice::save: skipping external images" );
tqWarning( "QSvgDevice::save: skipping external images" );
#endif
QTextStream s( dev );
@ -419,7 +419,7 @@ int QSvgDevice::metric( int m ) const
default:
val = 0;
#if defined(QT_CHECK_RANGE)
qWarning( "QSvgDevice::metric: Invalid metric command" );
tqWarning( "QSvgDevice::metric: Invalid metric command" );
#endif
}
return val;
@ -714,7 +714,7 @@ bool QSvgDevice::cmd ( int c, QPainter *painter, QPDevCmdParam *p )
}
default:
#if defined(CHECK_RANGE)
qWarning( "QSVGDevice::cmd: Invalid command %d", c );
tqWarning( "QSVGDevice::cmd: Invalid command %d", c );
#endif
break;
}
@ -981,7 +981,7 @@ bool QSvgDevice::play( const QDomNode &node )
// ### catch references to embedded .svg files
QPixmap pix;
if ( !pix.load( href ) ) {
qWarning( "QSvgDevice::play: Couldn't load image %s", href.latin1() );
tqWarning( "QSvgDevice::play: Couldn't load image %s", href.latin1() );
break;
}
pt->drawPixmap( QRect( x1, y1, w, h ), pix );
@ -1027,7 +1027,7 @@ bool QSvgDevice::play( const QDomNode &node )
break;
}
case InvalidElement:
qWarning( "QSvgDevice::play: unknown element type %s",
tqWarning( "QSvgDevice::play: unknown element type %s",
node.nodeName().latin1() );
break;
};
@ -1114,7 +1114,7 @@ double QSvgDevice::parseLen( const QString &str, bool *ok, bool horiz ) const
{
QRegExp reg( QString::fromLatin1("([+-]?\\d*\\.*\\d*[Ee]?[+-]?\\d*)(em|ex|px|%|pt|pc|cm|mm|in|)$") );
if ( reg.search( str ) == -1 ) {
qWarning( "QSvgDevice::parseLen: couldn't parse %s ", str.latin1() );
tqWarning( "QSvgDevice::parseLen: couldn't parse %s ", str.latin1() );
if ( ok )
*ok = FALSE;
return 0.0;
@ -1143,7 +1143,7 @@ double QSvgDevice::parseLen( const QString &str, bool *ok, bool horiz ) const
else if ( u == "pc" )
dbl *= m.logicalDpiX() / 6.0;
else
qWarning( "QSvgDevice::parseLen: Unknown unit %s", u.latin1() );
tqWarning( "QSvgDevice::parseLen: Unknown unit %s", u.latin1() );
}
if ( ok )
*ok = TRUE;
@ -1241,7 +1241,7 @@ void QSvgDevice::setStyleProperty( const QString &prop, const QString &val,
else if ( val == "italic" )
font->setItalic( TRUE );
else
qWarning( "QSvgDevice::setStyleProperty: unhandled "
tqWarning( "QSvgDevice::setStyleProperty: unhandled "
"font-style: %s", val.latin1() );
} else if ( prop == "font-weight" ) {
int w = font->weight();
@ -1373,7 +1373,7 @@ void QSvgDevice::drawPath( const QString &data )
cmd = mode; // continue in previous mode
idx--;
} else {
qWarning( "QSvgDevice::drawPath: Unknown command" );
tqWarning( "QSvgDevice::drawPath: Unknown command" );
return;
}
}
@ -1385,7 +1385,7 @@ void QSvgDevice::drawPath( const QString &data )
for ( int i = 0; i < numArgs; i++ ) {
int pos = reg.search( data, idx );
if ( pos == -1 ) {
qWarning( "QSvgDevice::drawPath: Error parsing arguments" );
tqWarning( "QSvgDevice::drawPath: Error parsing arguments" );
return;
}
arg[ i ] = reg.cap( 1 ).toDouble();

@ -2725,7 +2725,7 @@ bool QXmlSimpleReader::feature( const QString& name, bool *ok ) const
} else if ( name == "http://trolltech.com/xml/features/report-start-end-entity" ) {
return d->reportEntities;
} else {
qWarning( "Unknown feature %s", name.latin1() );
tqWarning( "Unknown feature %s", name.latin1() );
if ( ok != 0 )
*ok = FALSE;
}
@ -2783,7 +2783,7 @@ void QXmlSimpleReader::setFeature( const QString& name, bool value )
} else if ( name == "http://trolltech.com/xml/features/report-start-end-entity" ) {
d->reportEntities = value;
} else {
qWarning( "Unknown feature %s", name.latin1() );
tqWarning( "Unknown feature %s", name.latin1() );
}
}
@ -3182,14 +3182,14 @@ bool QXmlSimpleReader::parseProlog()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseProlog (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseProlog (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -3370,14 +3370,14 @@ bool QXmlSimpleReader::parseElement()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseElement (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseElement (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -3734,14 +3734,14 @@ bool QXmlSimpleReader::parseContent()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseContent (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseContent (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -4035,14 +4035,14 @@ bool QXmlSimpleReader::parseMisc()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseMisc (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseMisc (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -4189,14 +4189,14 @@ bool QXmlSimpleReader::parsePI()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parsePI (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parsePI (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -4418,14 +4418,14 @@ bool QXmlSimpleReader::parseDoctype()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseDoctype (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseDoctype (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -4620,14 +4620,14 @@ bool QXmlSimpleReader::parseExternalID()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseExternalID (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseExternalID (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -4781,14 +4781,14 @@ bool QXmlSimpleReader::parseMarkupdecl()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseMarkupdecl (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseMarkupdecl (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -4938,14 +4938,14 @@ bool QXmlSimpleReader::parsePEReference()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parsePEReference (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parsePEReference (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -5110,14 +5110,14 @@ bool QXmlSimpleReader::parseAttlistDecl()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseAttlistDecl (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseAttlistDecl (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -5325,14 +5325,14 @@ bool QXmlSimpleReader::parseAttType()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseAttType (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseAttType (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -5545,14 +5545,14 @@ bool QXmlSimpleReader::parseAttValue()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseAttValue (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseAttValue (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -5686,14 +5686,14 @@ bool QXmlSimpleReader::parseElementDecl()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseElementDecl (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseElementDecl (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -5894,14 +5894,14 @@ bool QXmlSimpleReader::parseNotationDecl()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseNotationDecl (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseNotationDecl (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -6037,14 +6037,14 @@ bool QXmlSimpleReader::parseChoiceSeq()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseChoiceSeq (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseChoiceSeq (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -6201,14 +6201,14 @@ bool QXmlSimpleReader::parseEntityDecl()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseEntityDecl (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseEntityDecl (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -6469,14 +6469,14 @@ bool QXmlSimpleReader::parseEntityValue()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseEntityValue (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseEntityValue (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -6587,14 +6587,14 @@ bool QXmlSimpleReader::parseComment()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseComment (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseComment (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -6698,14 +6698,14 @@ bool QXmlSimpleReader::parseAttribute()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseAttribute (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseAttribute (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -6804,14 +6804,14 @@ bool QXmlSimpleReader::parseName()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseName (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseName (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -6889,14 +6889,14 @@ bool QXmlSimpleReader::parseNmtoken()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseNmtoken (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseNmtoken (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -6997,14 +6997,14 @@ bool QXmlSimpleReader::parseReference()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseReference (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseReference (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {
@ -7324,14 +7324,14 @@ bool QXmlSimpleReader::parseString()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: parseString (cont) in state %d", state );
tqDebug( "QXmlSimpleReader: parseString (cont) in state %d", state );
#endif
if ( !d->parseStack->isEmpty() ) {
ParseFunction function = d->parseStack->top().function;
if ( function == &QXmlSimpleReader::eat_ws ) {
d->parseStack->pop();
#if defined(QT_QXML_DEBUG)
qDebug( "QXmlSimpleReader: eat_ws (cont)" );
tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {

@ -57,7 +57,7 @@ Config::Config()
if( !static_configuration ) {
static_configuration = this;
} else {
qWarning( "Multiple configurations not allowed!" );
tqWarning( "Multiple configurations not allowed!" );
}
}
@ -74,23 +74,23 @@ Config *Config::loadConfig(const QString &profileFileName)
QFile file(profileFileName);
if (!file.exists()) {
qWarning( "File does not exist: " + profileFileName );
tqWarning( "File does not exist: " + profileFileName );
return 0;
}
DocuParser *parser = DocuParser::createParser( profileFileName );
if (!parser) {
qWarning( "Failed to create parser for file: " + profileFileName );
tqWarning( "Failed to create parser for file: " + profileFileName );
return 0;
}
if (parser->parserVersion() < DocuParser::Qt320) {
qWarning( "File does not contain profile information" );
tqWarning( "File does not contain profile information" );
return 0;
}
DocuParser320 *profileParser = static_cast<DocuParser320*>(parser);
parser->parse(&file);
config->profil = profileParser->profile();
if (!config->profil) {
qWarning( "Config::loadConfig(), no profile in: " + profileFileName );
tqWarning( "Config::loadConfig(), no profile in: " + profileFileName );
return 0;
}
config->profil->setProfileType(Profile::UserProfile);
@ -180,10 +180,10 @@ void Config::saveSettings()
#ifdef ASSISTANT_DEBUG
static void dumpmap( const QMap<QString,QString> &m, const QString &header )
{
qDebug( header );
tqDebug( header );
QMap<QString,QString>::ConstIterator it = m.begin();
while (it != m.end()) {
qDebug( " " + it.key() + ":\t\t" + *it );
tqDebug( " " + it.key() + ":\t\t" + *it );
++it;
}
}
@ -231,7 +231,7 @@ void Config::loadDefaultProfile()
dumpmap( profil->indexPages, "IndexPages" );
dumpmap( profil->imageDirs, "ImageDirs" );
dumpmap( profil->dcfTitles, "dcfTitles" );
qDebug( "Docfiles: \n " + profil->docs.join( "\n " ) );
tqDebug( "Docfiles: \n " + profil->docs.join( "\n " ) );
#endif
}
@ -264,11 +264,11 @@ void Config::saveProfile( Profile *profile )
settings.writeEntry( profKey + "ImageDirs", imgDirs );
#if ASSISTANT_DEBUG
qDebug( "Titles:\n - " + ( (QStringList*) &titles )->join( "\n - " ) );
qDebug( "Docfiles:\n - " + dcfs.join( "\n - " ) );
qDebug( "IndexPages:\n - " + indexes.join( "\n - " ) );
qDebug( "DocIcons:\n - " + icons.join( "\n - " ) );
qDebug( "ImageDirs:\n - " + imgDirs.join( "\n - " ) );
tqDebug( "Titles:\n - " + ( (QStringList*) &titles )->join( "\n - " ) );
tqDebug( "Docfiles:\n - " + dcfs.join( "\n - " ) );
tqDebug( "IndexPages:\n - " + indexes.join( "\n - " ) );
tqDebug( "DocIcons:\n - " + icons.join( "\n - " ) );
tqDebug( "ImageDirs:\n - " + imgDirs.join( "\n - " ) );
#endif
}
@ -374,6 +374,6 @@ bool Config::sideBarHidden() const
QString Config::assistantDocPath() const
{
return profil->props["assistantdocs"].isEmpty()
? QString( qInstallPathDocs() ) + "/html"
? QString( tqInstallPathDocs() ) + "/html"
: profil->props["assistantdocs"];
}

@ -81,7 +81,7 @@ static bool verifyDirectory(const QString &str)
if (!dirInfo.exists())
return QDir().mkdir(str);
if (!dirInfo.isDir()) {
qWarning("'%s' exists but is not a directory", str.latin1());
tqWarning("'%s' exists but is not a directory", str.latin1());
return FALSE;
}
return TRUE;
@ -268,7 +268,7 @@ void HelpDialog::removeOldCacheFiles()
{
QString dir = cacheFilesPath; // ### remove the last '/' ?
if (!verifyDirectory(cacheFilesPath)) {
qWarning( "Failed to created assistant directory" );
tqWarning( "Failed to created assistant directory" );
return;
}
QString pname = "." + Config::configuration()->profileName();

@ -158,7 +158,7 @@ void Index::parseDocument( const QString &filename, int docNum )
{
QFile file( filename );
if ( !file.open( IO_ReadOnly ) ) {
qWarning( "can not open file " + filename );
tqWarning( "can not open file " + filename );
return;
}
@ -327,7 +327,7 @@ QString Index::getDocumentTitle( const QString &fileName )
{
QFile file( fileName );
if ( !file.open( IO_ReadOnly ) ) {
qWarning( "cannot open file " + fileName );
tqWarning( "cannot open file " + fileName );
return fileName;
}
QTextStream s( &file );
@ -450,7 +450,7 @@ bool Index::searchForPattern( const QStringList &patterns, const QStringList &wo
{
QFile file( fileName );
if ( !file.open( IO_ReadOnly ) ) {
qWarning( "cannot open file " + fileName );
tqWarning( "cannot open file " + fileName );
return FALSE;
}

@ -286,7 +286,7 @@ int main( int argc, char ** argv )
}
if( resourceDir.isNull() )
resourceDir = qInstallPathTranslations();
resourceDir = tqInstallPathTranslations();
QTranslator translator( 0 );
translator.load( QString("assistant_") + QTextCodec::locale(), resourceDir );

@ -412,7 +412,7 @@ void MainWindow::showLinkFromClient( const QString &link )
void MainWindow::showLink( const QString &link )
{
if( link.isEmpty() ) {
qWarning( "The link is empty!" );
tqWarning( "The link is empty!" );
}
int find = link.find( '#' );
@ -441,7 +441,7 @@ void MainWindow::showLink( const QString &link )
void MainWindow::showLinks( const QStringList &links )
{
if ( links.size() == 0 ) {
qWarning( "MainWindow::showLinks() - Empty link" );
tqWarning( "MainWindow::showLinks() - Empty link" );
return;
}
@ -482,7 +482,7 @@ void MainWindow::timerEvent(QTimerEvent *e)
void MainWindow::showQtHelp()
{
showLink( QString( qInstallPathDocs() ) + "/html/index.html" );
showLink( QString( tqInstallPathDocs() ) + "/html/index.html" );
}
void MainWindow::showSettingsDialog()

@ -45,7 +45,7 @@
Profile *Profile::createDefaultProfile( const QString &docPath )
{
QString path = qInstallPathDocs();
QString path = tqInstallPathDocs();
if ( !docPath.isEmpty() )
path = docPath;
path = path + "/html/";
@ -116,9 +116,9 @@ void Profile::removeDocFileEntry( const QString &docfile )
}
#ifdef ASSISTANT_DEBUG
qDebug( "docs:\n - " + docs.join( "\n - " ) );
qDebug( "titles:\n - " + titles.join( "\n - " ) );
qDebug( "keys:\n - " + ( (QStringList*) &(dcfTitles.keys()) )->join( "\n - " ) );
qDebug( "values:\n - " + ( (QStringList*) &(dcfTitles.values()) )->join( "\n - " ) );
tqDebug( "docs:\n - " + docs.join( "\n - " ) );
tqDebug( "titles:\n - " + titles.join( "\n - " ) );
tqDebug( "keys:\n - " + ( (QStringList*) &(dcfTitles.keys()) )->join( "\n - " ) );
tqDebug( "values:\n - " + ( (QStringList*) &(dcfTitles.values()) )->join( "\n - " ) );
#endif
}

@ -2220,7 +2220,7 @@ void AddMenuCommand::execute()
void AddMenuCommand::unexecute()
{
if ( !item ) {
qWarning( "The AddMenuCommand was created without a menu item." );
tqWarning( "The AddMenuCommand was created without a menu item." );
return;
}
item->menu()->hide();

@ -764,7 +764,7 @@ void CustomWidgetEditor::loadDescription()
QString errMsg;
int errLine;
if ( !doc.setContent( &f, &errMsg, &errLine ) ) {
qDebug( QString("Parse error: ") + errMsg + QString(" in line %d"), errLine );
tqDebug( QString("Parse error: ") + errMsg + QString(" in line %d"), errLine );
return;
}

@ -911,7 +911,7 @@ static HierarchyItem::Type getChildType( int type )
{
switch ( (HierarchyItem::Type)type ) {
case HierarchyItem::Widget:
qWarning( "getChildType: Inserting childs dynamically to Widget or SlotParent is not allowed!" );
tqWarning( "getChildType: Inserting childs dynamically to Widget or SlotParent is not allowed!" );
break;
case HierarchyItem::SlotParent:
case HierarchyItem::SlotPublic:

@ -774,7 +774,7 @@ void GridLayout::doLayout()
( (QLayoutWidget*)w )->updateSizePolicy();
w->show();
} else {
qWarning("ooops, widget '%s' does not fit in layout", w->name() );
tqWarning("ooops, widget '%s' does not fit in layout", w->name() );
}
}
finishLayout( needMove, layout );

@ -133,7 +133,7 @@ MainWindow *MainWindow::self = 0;
QString assistantPath()
{
QString path = QDir::cleanDirPath( QString( qInstallPathBins() ) +
QString path = QDir::cleanDirPath( QString( tqInstallPathBins() ) +
QDir::separator() );
return path;
}
@ -2794,7 +2794,7 @@ void MainWindow::setSnapGrid( bool b )
QString MainWindow::documentationPath() const
{
return QString( qInstallPathDocs() ) + "/html/";
return QString( tqInstallPathDocs() ) + "/html/";
}
void MainWindow::windowsMenuActivated( int id )
@ -3421,7 +3421,7 @@ void MainWindow::showSourceLine( QObject *o, int line, LineMode lm )
fw = ff->formWindow();
if ( !fw && !qwf_forms ) {
qWarning( "MainWindow::showSourceLine: qwf_forms is NULL!" );
tqWarning( "MainWindow::showSourceLine: qwf_forms is NULL!" );
return;
}

@ -1450,7 +1450,7 @@ void MainWindow::createNewTemplate()
const char *qtdir = getenv( "QTDIR" );
if(qtdir)
templRoots << qtdir;
templRoots << qInstallPathData();
templRoots << tqInstallPathData();
if(qtdir) //try the tools/designer directory last!
templRoots << (QString(qtdir) + "/tools/designer");
QFile f;

@ -152,7 +152,7 @@ void MetaDataBase::setPropertyChanged( QObject *o, const QString &property, bool
}
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -191,7 +191,7 @@ bool MetaDataBase::isPropertyChanged( QObject *o, const QString &property )
return ( (PropertyObject*)o )->mdIsPropertyChanged( property );
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return FALSE;
}
@ -204,7 +204,7 @@ QStringList MetaDataBase::changedProperties( QObject *o )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QStringList();
}
@ -222,7 +222,7 @@ void MetaDataBase::setPropertyComment( QObject *o, const QString &property, cons
}
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -237,7 +237,7 @@ QString MetaDataBase::propertyComment( QObject *o, const QString &property )
return ( (PropertyObject*)o )->mdPropertyComment( property );
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QString::null;
}
@ -254,7 +254,7 @@ void MetaDataBase::setFakeProperty( QObject *o, const QString &property, const Q
}
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -268,7 +268,7 @@ QVariant MetaDataBase::fakeProperty( QObject * o, const QString &property)
return ( (PropertyObject*)o )->mdFakeProperty( property );
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QVariant();
}
@ -284,7 +284,7 @@ QMap<QString,QVariant>* MetaDataBase::fakeProperties( QObject* o )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return 0;
}
@ -298,7 +298,7 @@ void MetaDataBase::setSpacing( QObject *o, int spacing )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r || !o->isWidgetType() ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -326,7 +326,7 @@ int MetaDataBase::spacing( QObject *o )
o = ( (QMainWindow*)o )->centralWidget();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r || !o->isWidgetType() ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return -1;
}
@ -341,7 +341,7 @@ void MetaDataBase::setMargin( QObject *o, int margin )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r || !o->isWidgetType() ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -383,7 +383,7 @@ int MetaDataBase::margin( QObject *o )
o = ( (QMainWindow*)o )->centralWidget();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r || !o->isWidgetType() ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return -1;
}
@ -397,7 +397,7 @@ void MetaDataBase::setResizeMode( QObject *o, const QString &mode )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r || !o->isWidgetType() ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -414,7 +414,7 @@ QString MetaDataBase::resizeMode( QObject *o )
o = ( (QMainWindow*)o )->centralWidget();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r || !o->isWidgetType() ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QString::null;
}
@ -427,7 +427,7 @@ void MetaDataBase::addConnection( QObject *o, QObject *sender, const QCString &s
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -461,7 +461,7 @@ void MetaDataBase::removeConnection( QObject *o, QObject *sender, const QCString
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -490,7 +490,7 @@ void MetaDataBase::setupConnections( QObject *o, const QValueList<LanguageInterf
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -538,7 +538,7 @@ bool MetaDataBase::hasConnection( QObject *o, QObject *sender, const QCString &s
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return FALSE;
}
@ -560,7 +560,7 @@ QValueList<MetaDataBase::Connection> MetaDataBase::connections( QObject *o )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QValueList<Connection>();
}
@ -573,7 +573,7 @@ QValueList<MetaDataBase::Connection> MetaDataBase::connections( QObject *o, QObj
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QValueList<Connection>();
}
@ -595,7 +595,7 @@ QValueList<MetaDataBase::Connection> MetaDataBase::connections( QObject *o, QObj
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QValueList<Connection>();
}
@ -616,7 +616,7 @@ void MetaDataBase::doConnections( QObject *o )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -670,7 +670,7 @@ bool MetaDataBase::hasSlot( QObject *o, const QCString &slot, bool onlyCustom )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return FALSE;
}
@ -714,7 +714,7 @@ bool MetaDataBase::isSlotUsed( QObject *o, const QCString &slot )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return FALSE;
}
@ -735,7 +735,7 @@ void MetaDataBase::addFunction( QObject *o, const QCString &function, const QStr
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -759,7 +759,7 @@ void MetaDataBase::setFunctionList( QObject *o, const QValueList<Function> &func
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -773,7 +773,7 @@ void MetaDataBase::removeFunction( QObject *o, const QCString &function, const Q
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -797,7 +797,7 @@ void MetaDataBase::removeFunction( QObject *o, const QString &function )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -815,7 +815,7 @@ QValueList<MetaDataBase::Function> MetaDataBase::functionList( QObject *o, bool
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QValueList<Function>();
}
@ -834,7 +834,7 @@ QValueList<MetaDataBase::Function> MetaDataBase::slotList( QObject *o )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QValueList<Function>();
}
@ -852,7 +852,7 @@ void MetaDataBase::changeFunction( QObject *o, const QString &function, const QS
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -876,7 +876,7 @@ void MetaDataBase::changeFunctionAttributes( QObject *o, const QString &oldName,
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -900,7 +900,7 @@ bool MetaDataBase::hasFunction( QObject *o, const QCString &function, bool onlyC
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return FALSE;
}
@ -944,7 +944,7 @@ QString MetaDataBase::languageOfFunction( QObject *o, const QCString &function )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QString::null;
}
@ -1038,7 +1038,7 @@ void MetaDataBase::setTabOrder( QWidget *w, const QWidgetList &order )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*) w );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
w, w->name(), w->className() );
return;
}
@ -1051,7 +1051,7 @@ QWidgetList MetaDataBase::tabOrder( QWidget *w )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*) w );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
w, w->name(), w->className() );
return QWidgetList();
}
@ -1064,7 +1064,7 @@ void MetaDataBase::setIncludes( QObject *o, const QValueList<Include> &incs )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -1077,7 +1077,7 @@ QValueList<MetaDataBase::Include> MetaDataBase::includes( QObject *o )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QValueList<Include>();
}
@ -1090,7 +1090,7 @@ void MetaDataBase::setForwards( QObject *o, const QStringList &fwds )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -1103,7 +1103,7 @@ QStringList MetaDataBase::forwards( QObject *o )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QStringList();
}
@ -1116,7 +1116,7 @@ void MetaDataBase::setVariables( QObject *o, const QValueList<Variable> &vars )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -1129,7 +1129,7 @@ void MetaDataBase::addVariable( QObject *o, const QString &name, const QString &
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -1144,7 +1144,7 @@ void MetaDataBase::removeVariable( QObject *o, const QString &name )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -1162,7 +1162,7 @@ QValueList<MetaDataBase::Variable> MetaDataBase::variables( QObject *o )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QValueList<MetaDataBase::Variable>();
}
@ -1175,7 +1175,7 @@ bool MetaDataBase::hasVariable( QObject *o, const QString &name )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return FALSE;
}
@ -1203,7 +1203,7 @@ void MetaDataBase::setSignalList( QObject *o, const QStringList &sigs )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -1236,7 +1236,7 @@ QStringList MetaDataBase::signalList( QObject *o )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QStringList();
}
@ -1249,7 +1249,7 @@ void MetaDataBase::setMetaInfo( QObject *o, MetaInfo mi )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -1262,7 +1262,7 @@ MetaDataBase::MetaInfo MetaDataBase::metaInfo( QObject *o )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return MetaInfo();
}
@ -1308,7 +1308,7 @@ void MetaDataBase::setCursor( QWidget *w, const QCursor &c )
}
MetaDataBaseRecord *r = db->find( (void*)w );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
w, w->name(), w->className() );
return;
}
@ -1399,7 +1399,7 @@ void MetaDataBase::setPixmapArgument( QObject *o, int pixmap, const QString &arg
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -1415,7 +1415,7 @@ QString MetaDataBase::pixmapArgument( QObject *o, int pixmap )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QString::null;
}
@ -1430,7 +1430,7 @@ void MetaDataBase::clearPixmapArguments( QObject *o )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -1450,7 +1450,7 @@ void MetaDataBase::setPixmapKey( QObject *o, int pixmap, const QString &arg )
}
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -1468,7 +1468,7 @@ QString MetaDataBase::pixmapKey( QObject *o, int pixmap )
return ( (PropertyObject*)o )->mdPixmapKey( pixmap );
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QString::null;
}
@ -1491,7 +1491,7 @@ void MetaDataBase::clearPixmapKeys( QObject *o )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -1508,7 +1508,7 @@ void MetaDataBase::setColumnFields( QObject *o, const QMap<QString, QString> &co
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -1523,7 +1523,7 @@ QMap<QString, QString> MetaDataBase::columnFields( QObject *o )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QMap<QString, QString>();
}
@ -1589,7 +1589,7 @@ void MetaDataBase::setBreakPoints( QObject *o, const QValueList<uint> &l )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -1612,7 +1612,7 @@ QValueList<uint> MetaDataBase::breakPoints( QObject *o )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QValueList<uint>();
}
@ -1627,7 +1627,7 @@ void MetaDataBase::setBreakPointCondition( QObject *o, int line, const QString &
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -1641,7 +1641,7 @@ QString MetaDataBase::breakPointCondition( QObject *o, int line )
setupDataBase();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return QString::null;
}
@ -1662,7 +1662,7 @@ void MetaDataBase::setExportMacro( QObject *o, const QString &macro )
}
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return;
}
@ -1679,7 +1679,7 @@ QString MetaDataBase::exportMacro( QObject *o )
return ( (PropertyObject*)o )->mdExportMacro();
MetaDataBaseRecord *r = db->find( (void*)o );
if ( !r ) {
qWarning( "No entry for %p (%s, %s) found in MetaDataBase",
tqWarning( "No entry for %p (%s, %s) found in MetaDataBase",
o, o->name(), o->className() );
return "";
}

@ -289,7 +289,7 @@ void NewForm::insertTemplates( QIconView *tView,
const char *qtdir = getenv( "QTDIR" );
if(qtdir)
templRoots << qtdir;
templRoots << qInstallPathData();
templRoots << tqInstallPathData();
if(qtdir) //try the tools/designer directory last!
templRoots << (QString(qtdir) + "/tools/designer");
for ( QStringList::Iterator it = templRoots.begin(); it != templRoots.end(); ++it ) {

@ -83,7 +83,7 @@ void PixmapView::previewUrl( const QUrl &u )
if ( !pix.isNull() )
setPixmap( pix );
} else {
qWarning( "Previewing remote files not supported." );
tqWarning( "Previewing remote files not supported." );
}
}

@ -1048,7 +1048,7 @@ void Project::loadConnections()
dbConnections.append( conn );
}
} else {
qDebug( QString("Parse error: ") + errMsg + QString(" in line %d"), errLine );
tqDebug( QString("Parse error: ") + errMsg + QString(" in line %d"), errLine );
}
f.close();
}
@ -1583,7 +1583,7 @@ QString Project::locationOfObject( QObject *o )
extern QMap<QWidget*, QString> *qwf_forms;
if ( !qwf_forms ) {
qWarning( "Project::locationOfObject: qwf_forms is NULL!" );
tqWarning( "Project::locationOfObject: qwf_forms is NULL!" );
return QString::null;
}

@ -118,7 +118,7 @@ static QStringList getFontList()
{
if ( !fontDataBase ) {
fontDataBase = new QFontDatabase;
qAddPostRoutine( cleanupFontDatabase );
tqAddPostRoutine( cleanupFontDatabase );
}
return fontDataBase->families();
}
@ -150,7 +150,7 @@ bool PropertyWhatsThis::clicked( const QString& href )
{
if ( !href.isEmpty() ) {
QAssistantClient *ac = MainWindow::self->assistantClient();
ac->showPage( QString( qInstallPathDocs() ) + "/html/" + href );
ac->showPage( QString( tqInstallPathDocs() ) + "/html/" + href );
}
return FALSE; // do not hide window
}

@ -1756,7 +1756,7 @@ void Resource::saveProperty( QObject *w, const QString &name, const QVariant &va
break;
}
default:
qWarning( "saving the property %s of type %d not supported yet", name.latin1(), (int)t );
tqWarning( "saving the property %s of type %d not supported yet", name.latin1(), (int)t );
}
}
@ -1803,7 +1803,7 @@ QObject *Resource::createObject( const QDomElement &e, QWidget *parent, QLayout*
bool isPlugin =
WidgetDatabase::isCustomPluginWidget( WidgetDatabase::idFromClassName( parentClassName ) );
if ( isPlugin )
qWarning( "####### loading custom container widgets without page support not implemented!" );
tqWarning( "####### loading custom container widgets without page support not implemented!" );
// ### TODO loading for custom container widgets without pages
#endif
if ( !className.isNull() ) {
@ -2367,9 +2367,9 @@ void Resource::saveImageData( const QImage &img, QTextStream &ts, int indent )
QByteArray bazip = ba;
int i = 0;
if (compress) {
bazip = qCompress( ba );
bazip = tqCompress( ba );
format += ".GZ";
// The first 4 bytes in qCompress() are the length of the unzipped
// The first 4 bytes in tqCompress() are the length of the unzipped
// format. The XPM.GZ format does not use these.
i = 4;
}

@ -252,7 +252,7 @@ void WizardEditor::itemDropped( QListBoxItem * i )
// Assumes that only one item has been moved.
int droppedItem = listBox->index( i );
//qDebug( "Moving page %d -> %d", draggedItem, droppedItem );
//tqDebug( "Moving page %d -> %d", draggedItem, droppedItem );
MoveWizardPageCommand *cmd = new MoveWizardPageCommand( tr( "Move page %1 to %2 in %3" ).arg( draggedItem ).arg( droppedItem ).arg( wizard->name() ), formwindow, wizard, draggedItem, droppedItem );
commands.append( cmd );
}

@ -1115,7 +1115,7 @@ static QString fileContents( const QString& fileName )
{
QFile f( fileName );
if ( !f.open(IO_ReadOnly) ) {
qWarning( "yyindent error: Cannot open file '%s' for reading: %s",
tqWarning( "yyindent error: Cannot open file '%s' for reading: %s",
fileName.latin1(), strerror(errno) );
return QString::null;
}
@ -1124,14 +1124,14 @@ static QString fileContents( const QString& fileName )
QString contents = t.read();
f.close();
if ( contents.isEmpty() )
qWarning( "yyindent error: File '%s' is empty", fileName.latin1() );
tqWarning( "yyindent error: File '%s' is empty", fileName.latin1() );
return contents;
}
int main( int argc, char **argv )
{
if ( argc != 2 ) {
qWarning( "usage: yyindent file.cpp" );
tqWarning( "usage: yyindent file.cpp" );
return 1;
}

@ -18,9 +18,9 @@ bool createConnections()
defaultDB->setPassword( DB_BOOKS_PASSWD );
defaultDB->setHostName( DB_BOOKS_HOST );
if ( ! defaultDB->open() ) {
qWarning( "Failed to open books database: " +
tqWarning( "Failed to open books database: " +
defaultDB->lastError().driverText() );
qWarning( defaultDB->lastError().databaseText() );
tqWarning( defaultDB->lastError().databaseText() );
return FALSE;
}

@ -71,7 +71,7 @@ enum { Tok_Boi, Tok_Ampersand, Tok_Aster, Tok_LeftParen, Tok_RightParen,
/*
The following variables store the lexical analyzer state. The best way
to understand them is to implement a function myGetToken() that calls
getToken(), to add some qDebug() statements in there and then to
getToken(), to add some tqDebug() statements in there and then to
#define getToken() myGetToken().
*/
static QString *yyIn; // the input stream
@ -143,7 +143,7 @@ static void stopTokenizer()
*/
static int getToken()
{
// why "+ 2"? try putting some qDebug()'s and see
// why "+ 2"? try putting some tqDebug()'s and see
yyPos = yyCurPos + 2;
for ( ;; ) {
@ -177,7 +177,7 @@ static int getToken()
around with the tokenizer state to effectively
ignore the comment. Beware of off-by-one and
off-by-two bugs when you modify this code by adding
qDebug()'s here and there.
tqDebug()'s here and there.
*/
if ( yyCurPos >= 0 ) {
int lineStart = yyIn->findRev( QChar('\n'), yyCurPos ) + 1;

@ -1617,7 +1617,7 @@ QStringList Dlg2Ui::convertQtArchitectDlgFile( const QString& fileName )
outf.setName( outFileName );
if ( !outf.open(IO_WriteOnly) ) {
qWarning( "dlg2ui: Could not open output file '%s'",
tqWarning( "dlg2ui: Could not open output file '%s'",
outFileName.latin1() );
return QStringList();
}

@ -2181,7 +2181,7 @@ QStringList Glade2Ui::convertGladeFile( const QString& fileName )
outFileName += QString( ".ui" );
FILE *out = fopen( outFileName.latin1(), "w" );
if ( out == 0 ) {
qWarning( "glade2ui: Could not open file '%s'",
tqWarning( "glade2ui: Could not open file '%s'",
outFileName.latin1() );
} else {
if ( !yyOut.isEmpty() )

@ -251,7 +251,7 @@ bool KDEVDLG2UI::parse()
QString outputFile = QString( className ) + ".ui";
fileOut.setName( outputFile );
if (!fileOut.open( IO_WriteOnly ) )
qFatal( "kdevdlg2ui: Could not open output file '%s'", outputFile.latin1() );
tqFatal( "kdevdlg2ui: Could not open output file '%s'", outputFile.latin1() );
out = new QTextStream( &fileOut );
targetFiles.append( outputFile );
} else {
@ -515,7 +515,7 @@ bool KDEVDLG2UI::writeDialog( const QString& name )
writeColor( "paletteBackgroundColor", color );
} //else {
//if ( line.length() )
//qDebug( "IGNORED: %s", line.latin1() );
//tqDebug( "IGNORED: %s", line.latin1() );
//}
}
*out << "</UI>" << endl;

@ -89,7 +89,7 @@ QStringList KDevDlgFilter::import( const QString &, const QString& filename )
{
QFile file( filename );
if ( !file.open( IO_ReadOnly ) )
qWarning( "uic: Could not open file '%s' ", filename.latin1() );
tqWarning( "uic: Could not open file '%s' ", filename.latin1() );
QTextStream in;
in.setDevice( &file );

@ -87,7 +87,7 @@ QStringList RCFilter::import( const QString &, const QString& filename )
{
QFile file( filename );
if ( !file.open( IO_ReadOnly ) )
qWarning( "uic: Could not open file '%s' ", filename.latin1() );
tqWarning( "uic: Could not open file '%s' ", filename.latin1() );
QTextStream in;
in.setDevice( &file );

@ -380,7 +380,7 @@ bool RC2UI::makeDialog()
QString outputFile = QString(className) + ".ui";
fileOut.setName( outputFile );
if (!fileOut.open( IO_WriteOnly ) )
qFatal( "rc2ui: Could not open output file '%s'", outputFile.latin1() );
tqFatal( "rc2ui: Could not open output file '%s'", outputFile.latin1() );
out = new QTextStream( &fileOut );
targetFiles.append( outputFile );
} else {
@ -838,7 +838,7 @@ bool RC2UI::makeStringTable()
if (outputFile ) {
fileOut.setName( outputFile );
if (!fileOut.open( IO_WriteOnly ) )
qFatal( "rc2ui: Could not open output file '%s'", outputFile.latin1() );
tqFatal( "rc2ui: Could not open output file '%s'", outputFile.latin1() );
out = new QTextStream( &fileOut );
}

@ -76,12 +76,12 @@ bool Conv2ui::reinit()
bool Conv2ui::convert( const QString & filename, const QDir & dest )
{
if ( !importFiltersManager ) {
qWarning( "Conv2ui: no QPluginManager was found" );
tqWarning( "Conv2ui: no QPluginManager was found" );
return FALSE;
}
if ( !QFile::exists( absName( filename ) ) ) {
qWarning( "Conv2ui: can not find file %s", filename.latin1() );
tqWarning( "Conv2ui: can not find file %s", filename.latin1() );
return FALSE;
}

@ -78,7 +78,7 @@ static QString convertToCIdentifier( const char *s )
static ulong embedData( QTextStream& out, const uchar* input, int nbytes )
{
#ifndef QT_NO_IMAGE_COLLECTION_COMPRESSION
QByteArray bazip( qCompress( input, nbytes ) );
QByteArray bazip( tqCompress( input, nbytes ) );
ulong len = bazip.size();
#else
ulong len = nbytes;

@ -265,7 +265,7 @@ int main( int argc, char * argv[] )
if ( !outputFile.isEmpty() ) {
fileOut.setName( outputFile );
if (!fileOut.open( IO_WriteOnly ) ) {
qWarning( "uic: Could not open output file '%s'", outputFile.data() );
tqWarning( "uic: Could not open output file '%s'", outputFile.data() );
return 1;
}
} else {
@ -283,7 +283,7 @@ int main( int argc, char * argv[] )
QFile file( fileName );
if ( !file.open( IO_ReadOnly ) ) {
qWarning( "uic: Could not open file '%s'", fileName );
tqWarning( "uic: Could not open file '%s'", fileName );
return 1;
}
@ -291,13 +291,13 @@ int main( int argc, char * argv[] )
QString errMsg;
int errLine;
if ( !doc.setContent( &file, &errMsg, &errLine ) ) {
qWarning( QString("uic: Failed to parse %s: ") + errMsg + QString (" in line %d"), fileName, errLine );
tqWarning( QString("uic: Failed to parse %s: ") + errMsg + QString (" in line %d"), fileName, errLine );
return 1;
}
QDomElement e = doc.firstChild().toElement();
if ( e.hasAttribute("version") && e.attribute("version").toDouble() > 3.3 ) {
qWarning( QString("uic: File generated with too recent version of Qt Designer (%s vs. %s)"),
tqWarning( QString("uic: File generated with too recent version of Qt Designer (%s vs. %s)"),
e.attribute("version").latin1(), QT_VERSION_STR );
return 1;
}
@ -350,7 +350,7 @@ int main( int argc, char * argv[] )
out << "#endif // " << protector << endl;
}
if ( fileOut.status() != IO_Ok ) {
qWarning( "uic: Error writing to file" );
tqWarning( "uic: Error writing to file" );
if ( !outputFile.isEmpty() )
remove( outputFile );
}

@ -345,7 +345,7 @@ void Uic::writeFunctionsSubImpl( const QStringList &fuLst, const QStringList &ty
out << " */" << endl;
out << type << " " << subClass << "::" << (*it) << endl;
out << "{" << endl;
out << " qWarning( \"" << subClass << "::" << (*it) << " not yet implemented!\" );" << endl;
out << " tqWarning( \"" << subClass << "::" << (*it) << " not yet implemented!\" );" << endl;
out << "}" << endl << endl;
}
out << endl;

@ -344,7 +344,7 @@ QWidget *QWidgetFactory::create( QIODevice *dev, QObject *connector, QWidget *pa
if ( doc.setContent( dev, &errMsg, &errLine ) ) {
w = widgetFactory->createFromUiFile( doc, connector, parent, name );
} else {
// qDebug( QString("Parse error: ") + errMsg + QString(" in line %d"), errLine );
// tqDebug( QString("Parse error: ") + errMsg + QString(" in line %d"), errLine );
}
}
if ( !w ) {
@ -701,7 +701,7 @@ void QWidgetFactory::inputSpacer( const UibStrTable& strings, QDataStream& in,
}
break;
default:
qFatal( "Corrupt" );
tqFatal( "Corrupt" );
}
in >> objectTag;
}
@ -768,7 +768,7 @@ void QWidgetFactory::inputColumnOrRow( const UibStrTable& strings,
}
break;
default:
qFatal( "Corrupt" );
tqFatal( "Corrupt" );
}
in >> objectTag;
}
@ -833,7 +833,7 @@ void QWidgetFactory::inputItem( const UibStrTable& strings, QDataStream& in,
pixmaps << value.asPixmap();
break;
default:
qFatal( "Corrupt" );
tqFatal( "Corrupt" );
}
in >> objectTag;
}
@ -904,7 +904,7 @@ void QWidgetFactory::inputMenuItem( QObject **objects,
popupMenu->insertSeparator();
break;
default:
qFatal( "Corrupt" );
tqFatal( "Corrupt" );
}
in >> objectTag;
}
@ -1091,7 +1091,7 @@ QObject *QWidgetFactory::inputObject( QObject **objects, int& numObjects,
QBrush(color, value.asPixmap()) );
break;
default:
qFatal( "Corrupt" );
tqFatal( "Corrupt" );
}
in >> paletteTag;
}
@ -1156,7 +1156,7 @@ QObject *QWidgetFactory::inputObject( QObject **objects, int& numObjects,
}
break;
default:
qFatal( "Corrupt" );
tqFatal( "Corrupt" );
}
in >> objectTag;
metAttribute--;
@ -1193,14 +1193,14 @@ QWidget *QWidgetFactory::createFromUibFile( QDataStream& in,
in >> lf;
in >> cr;
if ( lf != '\n' || cr != '\r' ) {
qWarning( "File corrupted" );
tqWarning( "File corrupted" );
return 0;
}
Q_UINT8 qdatastreamVersion;
in >> qdatastreamVersion;
if ( (int) qdatastreamVersion > in.version() ) {
qWarning( "Incompatible version of Qt" );
tqWarning( "Incompatible version of Qt" );
return 0;
}
in.setVersion( qdatastreamVersion );
@ -1259,7 +1259,7 @@ QWidget *QWidgetFactory::createFromUibFile( QDataStream& in,
unpackStringSplit( strings, in, slot );
// ###
#if 0
qWarning( "connect( %p, %s, %p, %s )", objects[senderNo],
tqWarning( "connect( %p, %s, %p, %s )", objects[senderNo],
signal.latin1(), objects[receiverNo],
slot.latin1() );
#endif
@ -1268,7 +1268,7 @@ QWidget *QWidgetFactory::createFromUibFile( QDataStream& in,
break;
case Block_Functions:
// ###
qWarning( "Block_Functions not supported" );
tqWarning( "Block_Functions not supported" );
in.device()->at( nextBlock );
break;
case Block_Images:
@ -1350,7 +1350,7 @@ QWidget *QWidgetFactory::createFromUibFile( QDataStream& in,
break;
case Block_Variables:
// ###
qWarning( "Block_Variables not supported" );
tqWarning( "Block_Variables not supported" );
in.device()->at( nextBlock );
break;
case Block_Widget:
@ -1361,7 +1361,7 @@ QWidget *QWidgetFactory::createFromUibFile( QDataStream& in,
toplevel->setName( name );
break;
default:
qWarning( "Version error" );
tqWarning( "Version error" );
return 0;
}
in >> blockType;
@ -1640,7 +1640,7 @@ QWidget *QWidgetFactory::createWidgetInternal( const QDomElement &e, QWidget *pa
QString parentClassName = parent ? parent->className() : 0;
bool isPlugin = parent ? !!d->customWidgets.find( parent->className() ) : FALSE;
if ( isPlugin )
qWarning( "####### loading custom container widgets without page support not implemented!" );
tqWarning( "####### loading custom container widgets without page support not implemented!" );
// ### TODO loading for custom container widgets without pages
#endif

@ -769,7 +769,7 @@ void TrWindow::newPhraseBook()
void TrWindow::openPhraseBook()
{
QString phrasebooks( qInstallPathData() );
QString phrasebooks( tqInstallPathData() );
QString name = QFileDialog::getOpenFileName( phrasebooks + "/phrasebooks",
tr("Qt phrase books (*.qph)\n"
"All files (*)"),
@ -852,8 +852,8 @@ void TrWindow::revertSorting()
void TrWindow::manual()
{
QAssistantClient *ac = new QAssistantClient( qInstallPathBins(), this );
ac->showPage( QString( qInstallPathDocs() ) + "/html/linguist-manual.html" );
QAssistantClient *ac = new QAssistantClient( tqInstallPathBins(), this );
ac->showPage( QString( tqInstallPathDocs() ) + "/html/linguist-manual.html" );
}
void TrWindow::about()

@ -176,7 +176,7 @@ static int getToken()
break;
case 'T':
// TR() for when all else fails
if ( qstricmp(yyIdent + 1, "R") == 0 )
if ( tqstricmp(yyIdent + 1, "R") == 0 )
return Tok_tr;
break;
case 'c':
@ -350,7 +350,7 @@ static int getToken()
yyString[yyStringLen] = '\0';
if ( yyCh != '"' )
qWarning( "%s:%d: Unterminated C++ string",
tqWarning( "%s:%d: Unterminated C++ string",
(const char *) yyFileName, yyLineNo );
if ( yyCh == EOF ) {
@ -551,7 +551,7 @@ static void parse( MetaTranslator *tor, const char *initialContext,
QString::null, utf8) );
if ( lacks_Q_OBJECT.contains(context) ) {
qWarning( "%s:%d: Class '%s' lacks Q_OBJECT macro",
tqWarning( "%s:%d: Class '%s' lacks Q_OBJECT macro",
(const char *) yyFileName, yyLineNo,
(const char *) context );
lacks_Q_OBJECT.remove( context );
@ -622,7 +622,7 @@ static void parse( MetaTranslator *tor, const char *initialContext,
case Tok_Arrow:
yyTok = getToken();
if ( yyTok == Tok_tr || yyTok == Tok_trUtf8 )
qWarning( "%s:%d: Cannot invoke tr() like this",
tqWarning( "%s:%d: Cannot invoke tr() like this",
(const char *) yyFileName, yyLineNo );
break;
case Tok_Gulbrandsen:
@ -639,7 +639,7 @@ static void parse( MetaTranslator *tor, const char *initialContext,
if ( yyBraceDepth == (int) namespaces.count() ) {
if ( missing_Q_OBJECT ) {
if ( needs_Q_OBJECT.contains(functionContext) ) {
qWarning( "%s:%d: Class '%s' lacks Q_OBJECT macro",
tqWarning( "%s:%d: Class '%s' lacks Q_OBJECT macro",
(const char *) yyFileName, yyLineNo,
(const char *) functionContext );
} else {

@ -242,16 +242,16 @@ private slots:
static void usage()
{
qWarning("Usage: makeqpf [-A] [-f spec-file] [font ...]");
qWarning("");
qWarning(" Saves QPF font files by rendering and saving fonts.");
qWarning("");
qWarning(" -A = Render and save all fonts in fontdir");
qWarning(" -f = File of lines:");
qWarning(" fontname character-ranges");
qWarning(" eg.");
qWarning(" smoothtimes 0-ff,20a0-20af");
qWarning(" font = Font to render and save");
tqWarning("Usage: makeqpf [-A] [-f spec-file] [font ...]");
tqWarning("");
tqWarning(" Saves QPF font files by rendering and saving fonts.");
tqWarning("");
tqWarning(" -A = Render and save all fonts in fontdir");
tqWarning(" -f = File of lines:");
tqWarning(" fontname character-ranges");
tqWarning(" eg.");
tqWarning(" smoothtimes 0-ff,20a0-20af");
tqWarning(" font = Font to render and save");
}
int main(int argc, char** argv)
@ -303,7 +303,7 @@ int main(int argc, char** argv)
m.save(family);
}
} else {
qWarning("Cannot open %s",specfile.latin1());
tqWarning("Cannot open %s",specfile.latin1());
}
} else {
while (*argv)

@ -186,7 +186,7 @@ void writecomment( QTextStream &str, const QString &s )
while ( idx < len ) {
int nl = s.find( '\n', idx );
if ( nl < 0 ) {
qWarning( "writecomment: string lacks newline" );
tqWarning( "writecomment: string lacks newline" );
str << "# " << s.mid( idx ) << '\n';
return;
}

@ -110,7 +110,7 @@ void addTranslation( QTranslator* translator, const QString& msgid, const QStrin
scope = *defaultScope;
if (translator->contains( scope.ascii(), id.ascii() ) ) {
qWarning("Error: \"%s\" already in use", msgid.ascii() );
tqWarning("Error: \"%s\" already in use", msgid.ascii() );
}
else {
translator->insert( scope.latin1(), id.latin1(), msgstr );

@ -422,7 +422,7 @@ void Main::loadFeatures(const QString& filename)
sectioncontents[sec].append(feature);
choices.append(feature);
} else {
qDebug("Unparsed text");
tqDebug("Unparsed text");
}
feature = lab = sec = QString::null;
@ -439,7 +439,7 @@ void Main::loadFeatures(const QString& filename)
int colon = line.find(':');
if ( colon < 0 ) {
qDebug("Cannot parse: %s",line.ascii());
tqDebug("Cannot parse: %s",line.ascii());
} else {
QString tag = line.left(colon);
QString value = line.mid(colon+1).stripWhiteSpace();
@ -513,7 +513,7 @@ void Main::loadFeatures(const QString& filename)
deps.clear();
} else if ( token[0].isEmpty() ) {
} else {
qDebug("Cannot parse: %s",token.join(" ").ascii());
tqDebug("Cannot parse: %s",token.join(" ").ascii());
}
} else if ( token[0] == "#include" ) {
on = TRUE;
@ -545,7 +545,7 @@ void Main::createItem(const QString& ch)
for (QStringList::Iterator dp = deps.begin(); dp != deps.end(); ++dp) {
QString dsec = section[*dp];
if ( dsec.isEmpty() )
qDebug("No section for %s",(*dp).latin1());
tqDebug("No section for %s",(*dp).latin1());
if ( !parent && dsec == sec ) {
createItem(*dp);
parent = item[*dp];
@ -582,7 +582,7 @@ void Main::loadConfig(const QString& filename)
if ( i )
i->setDefined(TRUE);
else
qDebug("The item %s is not used by qfeatures.h", token[1].latin1());
tqDebug("The item %s is not used by qfeatures.h", token[1].latin1());
}
} while (!s.atEnd());
}
@ -608,14 +608,14 @@ void Main::updateAvailability(QListViewItem* i)
if ( dd->isDefined() || !dd->isAvailable() )
av = FALSE;
} else
qDebug("%s ???",(*dit).latin1());
tqDebug("%s ???",(*dit).latin1());
}
if ( d->isAvailable() != av ) {
d->setAvailable(av);
updateAvailability(d);
}
}
qDebug("%s: %d",choice->id.latin1(),choice->isAvailable());
tqDebug("%s: %d",choice->id.latin1(),choice->isAvailable());
}
}

@ -55,7 +55,7 @@ struct EmbedImage {
int main( int argc, char **argv )
{
if ( argc < 2 ) {
qWarning( "Usage:\n\t%s [--images] files", argv[0] );
tqWarning( "Usage:\n\t%s [--images] files", argv[0] );
return 1;
}
@ -103,19 +103,19 @@ int main( int argc, char **argv )
} else {
QFile f( *it );
if ( !f.open(IO_ReadOnly) ) {
qWarning( "Cannot open file %s, ignoring it", (*it).latin1() );
tqWarning( "Cannot open file %s, ignoring it", (*it).latin1() );
continue;
}
QByteArray a( f.size() );
if ( f.size() == 0
|| f.readBlock(a.data(), f.size()) != (int)f.size() ) {
qWarning( "Cannot read file %s, ignoring it", (*it).latin1() );
tqWarning( "Cannot read file %s, ignoring it", (*it).latin1() );
continue;
}
if ( images ) {
QImage img;
if ( !img.loadFromData(a) ) {
qWarning( "Cannot read image from file %s, ignoring it", (*it).latin1() );
tqWarning( "Cannot read image from file %s, ignoring it", (*it).latin1() );
continue;
}
EmbedImage *e = new EmbedImage;

@ -86,7 +86,7 @@ int main( int argc, char *argv[] )
displayId = displaySpec.mid( m+1, rx.matchedLength()-1 ).toInt();
}
qDebug( "Using display %d", displayId );
tqDebug( "Using display %d", displayId );
QVFb mw( displayId, width, height, depth, skin );
app.setMainWidget( &mw );

@ -251,7 +251,7 @@ public:
QAnimationWriter::QAnimationWriter( const QString& filename, const char* format )
{
if ( QCString(format) != "MNG" ) {
qWarning("Format \"%s\" not supported, only MNG", format);
tqWarning("Format \"%s\" not supported, only MNG", format);
dev = 0;
d = 0;
} else {
@ -389,7 +389,7 @@ void QAnimationWriter::appendFrame(const QImage& frm, const QPoint& offset)
}
}
}
qDebug("%d,%d %d,%d",minx,miny,offset.x(),offset.y());
tqDebug("%d,%d %d,%d",minx,miny,offset.x(),offset.y());
d->composeImage(diff,QPoint(minx,miny)+offset);
}
if ( prev.isNull() || prev.size() == frame.size() && offset == QPoint(0,0) ) {

@ -88,7 +88,7 @@ QVFbView::QVFbView( int display_id, int w, int h, int d, QWidget *parent,
break;
default:
qFatal( "Unsupported bit depth %d\n", d );
tqFatal( "Unsupported bit depth %d\n", d );
}
mousePipe = QString(QT_VFB_MOUSE_PIPE).arg(display_id);
@ -99,14 +99,14 @@ QVFbView::QVFbView( int display_id, int w, int h, int d, QWidget *parent,
mouseFd = open( mousePipe.latin1(), O_RDWR | O_NDELAY );
if ( mouseFd == -1 ) {
qFatal( "Cannot open mouse pipe" );
tqFatal( "Cannot open mouse pipe" );
}
unlink( keyboardPipe );
mkfifo( keyboardPipe, 0666 );
keyboardFd = open( keyboardPipe, O_RDWR | O_NDELAY );
if ( keyboardFd == -1 ) {
qFatal( "Cannot open keyboard pipe" );
tqFatal( "Cannot open keyboard pipe" );
}
key_t key = ftok( mousePipe.latin1(), 'b' );
@ -129,7 +129,7 @@ QVFbView::QVFbView( int display_id, int w, int h, int d, QWidget *parent,
}
if ( (long)data == -1 )
qFatal( "Cannot attach to shared memory" );
tqFatal( "Cannot attach to shared memory" );
hdr = (QVFbHeader *)data;
hdr->width = w;
@ -215,7 +215,7 @@ void QVFbView::setGamma(double gr, double gg, double gb)
if ( g > 255 ) g = 255;
if ( b > 255 ) b = 255;
gammatable[i] = qRgb(r,g,b);
//qDebug("%d: %d,%d,%d",i,r,g,b);
//tqDebug("%d: %d,%d,%d",i,r,g,b);
}
setDirty(rect());
@ -282,25 +282,25 @@ static QString qws_dataDir()
QString dataDir = "/tmp/qtembedded-" + username;
if ( mkdir( dataDir.latin1(), 0700 ) ) {
if ( errno != EEXIST ) {
qFatal( QString("Cannot create Qt/Embedded data directory: %1")
tqFatal( QString("Cannot create Qt/Embedded data directory: %1")
.arg( dataDir ) );
}
}
struct stat buf;
if ( lstat( dataDir.latin1(), &buf ) )
qFatal( QString( "stat failed for Qt/Embedded data directory: %1" )
tqFatal( QString( "stat failed for Qt/Embedded data directory: %1" )
.arg( dataDir ) );
if ( !S_ISDIR( buf.st_mode ) )
qFatal( QString( "%1 is not a directory" ).arg( dataDir ) );
tqFatal( QString( "%1 is not a directory" ).arg( dataDir ) );
if ( buf.st_uid != getuid() )
qFatal( QString( "Qt/Embedded data directory is not owned by user %1" )
tqFatal( QString( "Qt/Embedded data directory is not owned by user %1" )
.arg( getuid() ) );
if ( (buf.st_mode & 0677) != 0600 )
qFatal( QString( "Qt/Embedded data directory has incorrect permissions: %1" )
tqFatal( QString( "Qt/Embedded data directory has incorrect permissions: %1" )
.arg( dataDir ) );
dataDir += "/";
@ -485,7 +485,7 @@ void QVFbView::drawScreen()
QRect r( hdr->update );
hdr->dirty = FALSE;
hdr->update = QRect();
// qDebug( "update %d, %d, %dx%d", r.y(), r.x(), r.width(), r.height() );
// tqDebug( "update %d, %d, %dx%d", r.y(), r.x(), r.width(), r.height() );
r = r.intersect( QRect(0, 0, hdr->width, hdr->height ) );
if ( !r.isEmpty() ) {
if ( int(zm) != zm ) {

@ -37,7 +37,7 @@ void LCDRange::setValue( int value )
void LCDRange::setRange( int minVal, int maxVal )
{
if ( minVal < 0 || maxVal > 99 || minVal > maxVal ) {
qWarning( "LCDRange::setRange(%d,%d)\n"
tqWarning( "LCDRange::setRange(%d,%d)\n"
"\tRange must be 0..99\n"
"\tand minVal must not be greater than maxVal",
minVal, maxVal );

@ -37,7 +37,7 @@ void LCDRange::setValue( int value )
void LCDRange::setRange( int minVal, int maxVal )
{
if ( minVal < 0 || maxVal > 99 || minVal > maxVal ) {
qWarning( "LCDRange::setRange(%d,%d)\n"
tqWarning( "LCDRange::setRange(%d,%d)\n"
"\tRange must be 0..99\n"
"\tand minVal must not be greater than maxVal",
minVal, maxVal );

@ -67,7 +67,7 @@ void LCDRange::setValue( int value )
void LCDRange::setRange( int minVal, int maxVal )
{
if ( minVal < 0 || maxVal > 99 || minVal > maxVal ) {
qWarning( "LCDRange::setRange(%d,%d)\n"
tqWarning( "LCDRange::setRange(%d,%d)\n"
"\tRange must be 0..99\n"
"\tand minVal must not be greater than maxVal",
minVal, maxVal );

@ -72,7 +72,7 @@ void LCDRange::setValue( int value )
void LCDRange::setRange( int minVal, int maxVal )
{
if ( minVal < 0 || maxVal > 99 || minVal > maxVal ) {
qWarning( "LCDRange::setRange(%d,%d)\n"
tqWarning( "LCDRange::setRange(%d,%d)\n"
"\tRange must be 0..99\n"
"\tand minVal must not be greater than maxVal",
minVal, maxVal );

@ -72,7 +72,7 @@ void LCDRange::setValue( int value )
void LCDRange::setRange( int minVal, int maxVal )
{
if ( minVal < 0 || maxVal > 99 || minVal > maxVal ) {
qWarning( "LCDRange::setRange(%d,%d)\n"
tqWarning( "LCDRange::setRange(%d,%d)\n"
"\tRange must be 0..99\n"
"\tand minVal must not be greater than maxVal",
minVal, maxVal );

@ -37,7 +37,7 @@ void LCDRange::setValue( int value )
void LCDRange::setRange( int minVal, int maxVal )
{
if ( minVal < 0 || maxVal > 99 || minVal > maxVal ) {
qWarning( "LCDRange::setRange(%d,%d)\n"
tqWarning( "LCDRange::setRange(%d,%d)\n"
"\tRange must be 0..99\n"
"\tand minVal must not be greater than maxVal",
minVal, maxVal );

@ -37,7 +37,7 @@ void LCDRange::setValue( int value )
void LCDRange::setRange( int minVal, int maxVal )
{
if ( minVal < 0 || maxVal > 99 || minVal > maxVal ) {
qWarning( "LCDRange::setRange(%d,%d)\n"
tqWarning( "LCDRange::setRange(%d,%d)\n"
"\tRange must be 0..99\n"
"\tand minVal must not be greater than maxVal",
minVal, maxVal );

Loading…
Cancel
Save