summaryrefslogtreecommitdiffstats
path: root/libtdepim
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:35:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:35:40 -0600
commit17e2ed52dbf8fac39a04331da02b9572e9e2e304 (patch)
treecd0d57c975a55e05aac71794b363748f24625875 /libtdepim
parenta684ecdeceae222d5aa930478b7bf59a3b7cae7f (diff)
downloadtdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.tar.gz
tdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.zip
Rename additional global TQt functions
Diffstat (limited to 'libtdepim')
-rw-r--r--libtdepim/ldapclient.cpp4
-rw-r--r--libtdepim/qutf7codec.cpp6
-rw-r--r--libtdepim/tests/testdateedit.cpp4
-rw-r--r--libtdepim/tests/testutf7decoder.cpp2
-rw-r--r--libtdepim/tests/testutf7encoder.cpp2
-rw-r--r--libtdepim/tests/testutf7encoder2.cpp4
6 files changed, 11 insertions, 11 deletions
diff --git a/libtdepim/ldapclient.cpp b/libtdepim/ldapclient.cpp
index 038824ca..1bebe335 100644
--- a/libtdepim/ldapclient.cpp
+++ b/libtdepim/ldapclient.cpp
@@ -162,7 +162,7 @@ void LdapClient::slotData( KIO::Job*, const TQByteArray& data )
void LdapClient::slotInfoMessage( KIO::Job*, const TQString & )
{
- //qDebug("Job said \"%s\"", info.latin1());
+ //tqDebug("Job said \"%s\"", info.latin1());
}
void LdapClient::slotDone()
@@ -171,7 +171,7 @@ void LdapClient::slotDone()
mActive = false;
#if 0
for ( TQValueList<LdapObject>::Iterator it = mObjects.begin(); it != mObjects.end(); ++it ) {
- qDebug( (*it).toString().latin1() );
+ tqDebug( (*it).toString().latin1() );
}
#endif
int err = mJob->error();
diff --git a/libtdepim/qutf7codec.cpp b/libtdepim/qutf7codec.cpp
index d390e649..78d709df 100644
--- a/libtdepim/qutf7codec.cpp
+++ b/libtdepim/qutf7codec.cpp
@@ -180,7 +180,7 @@ public:
// check for 8bit char's:
//
if ( ch > 127 ) {
- qWarning("TQUtf7Decoder: 8bit char found in input. "
+ tqWarning("TQUtf7Decoder: 8bit char found in input. "
"Parser has been re-initialized!");
resetParser();
result += TQChar::replacement;
@@ -228,12 +228,12 @@ public:
// makes for an ill-formed sequence.
// Note that we catch (the valid) "+-" pair
// right at the beginning.
- qWarning("TQUtf7Decoder: ill-formed input: "
+ tqWarning("TQUtf7Decoder: ill-formed input: "
"non-base64 char after escaping \"+\"!");
}
// pending bits from base64 encoding must be all 0:
if (stepNo >= 1 && uc) {
- qWarning("TQUtf7Decoder: ill-formed sequence: "
+ tqWarning("TQUtf7Decoder: ill-formed sequence: "
"non-zero bits in shifted-sequence tail!");
}
resetParser();
diff --git a/libtdepim/tests/testdateedit.cpp b/libtdepim/tests/testdateedit.cpp
index 4a7f981e..4da2bb82 100644
--- a/libtdepim/tests/testdateedit.cpp
+++ b/libtdepim/tests/testdateedit.cpp
@@ -46,9 +46,9 @@ DateEdit::DateEdit( TQWidget *parent, const char *name )
void DateEdit::dateChanged( const TQDate &date )
{
if ( date.isValid() )
- qDebug( "%s", date.toString().latin1() );
+ tqDebug( "%s", date.toString().latin1() );
else
- qDebug( "invalid date entered" );
+ tqDebug( "invalid date entered" );
}
int main(int argc,char **argv)
diff --git a/libtdepim/tests/testutf7decoder.cpp b/libtdepim/tests/testutf7decoder.cpp
index b13fb30c..7cdd4aea 100644
--- a/libtdepim/tests/testutf7decoder.cpp
+++ b/libtdepim/tests/testutf7decoder.cpp
@@ -20,7 +20,7 @@ int main( int argc, char * argv[] ) {
my_cout << buffer;
} else {
- qWarning("usage: testutf7decoder string_to_decode\n");
+ tqWarning("usage: testutf7decoder string_to_decode\n");
}
TQTextCodec::deleteAllCodecs();
}
diff --git a/libtdepim/tests/testutf7encoder.cpp b/libtdepim/tests/testutf7encoder.cpp
index a28a6bf3..46fbd4d8 100644
--- a/libtdepim/tests/testutf7encoder.cpp
+++ b/libtdepim/tests/testutf7encoder.cpp
@@ -88,6 +88,6 @@ void main( int argc, char * argv[] ) {
delete codec;
} else {
- qWarning("usage: testutf7encoder string_to_encode\n");
+ tqWarning("usage: testutf7encoder string_to_encode\n");
}
}
diff --git a/libtdepim/tests/testutf7encoder2.cpp b/libtdepim/tests/testutf7encoder2.cpp
index 65cf8b46..911b6907 100644
--- a/libtdepim/tests/testutf7encoder2.cpp
+++ b/libtdepim/tests/testutf7encoder2.cpp
@@ -19,7 +19,7 @@ int main( int argc, char * argv[] ) {
TQString buffer = my_cin.read();
- // qDebug("buffer == " + buffer);
+ // tqDebug("buffer == " + buffer);
#ifdef USE_STREAM
my_cout << buffer << endl;
@@ -39,7 +39,7 @@ int main( int argc, char * argv[] ) {
delete enc;
#endif // else USE_STREAM
} else {
- qWarning("usage: testutf7encoder2 < infile > outfile\n");
+ tqWarning("usage: testutf7encoder2 < infile > outfile\n");
}
TQTextCodec::deleteAllCodecs();
}