summaryrefslogtreecommitdiffstats
path: root/kresources/tvanytime/service.cpp
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 /kresources/tvanytime/service.cpp
parenta684ecdeceae222d5aa930478b7bf59a3b7cae7f (diff)
downloadtdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.tar.gz
tdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.zip
Rename additional global TQt functions
Diffstat (limited to 'kresources/tvanytime/service.cpp')
-rw-r--r--kresources/tvanytime/service.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kresources/tvanytime/service.cpp b/kresources/tvanytime/service.cpp
index e4c3ff219..f713f7b18 100644
--- a/kresources/tvanytime/service.cpp
+++ b/kresources/tvanytime/service.cpp
@@ -58,7 +58,7 @@ TQString Service::name() const
bool Service::loadXML( const TQDomElement & top )
{
if ( top.tagName() != "ServiceInformation" ) {
- qWarning( "XML error: Top tag was %s instead of the expected service information",
+ tqWarning( "XML error: Top tag was %s instead of the expected service information",
top.tagName().ascii() );
return false;
}
@@ -72,7 +72,7 @@ bool Service::loadXML( const TQDomElement & top )
TQDomElement e = n.toElement();
loadAttribute( e );
} else
- qWarning( "Node is not a comment or an element???" );
+ tqWarning( "Node is not a comment or an element???" );
}
return true;
}
@@ -105,7 +105,7 @@ TQRegExp ScheduleEvent::sRegExp( "PT(\\d{2})H(\\d{2})M(\\d{2})S" );
bool ScheduleEvent::loadXML( const TQDomElement & top )
{
if ( top.tagName() != "ScheduleEvent" ) {
- qWarning( "XML error: Top tag was %s instead of the expected event",
+ tqWarning( "XML error: Top tag was %s instead of the expected event",
top.tagName().ascii() );
return false;
}
@@ -119,7 +119,7 @@ bool ScheduleEvent::loadXML( const TQDomElement & top )
TQDomElement e = n.toElement();
loadAttribute( e );
} else
- qWarning( "Node is not a comment or an element???" );
+ tqWarning( "Node is not a comment or an element???" );
}
return true;
}
@@ -169,7 +169,7 @@ ProgramInformation::ProgramInformation( const TQString & title, const TQString &
bool ProgramInformation::loadXML( const TQDomElement & top )
{
if ( top.tagName() != "ProgramInformation" ) {
- qWarning( "XML error: Top tag was %s instead of the expected program information",
+ tqWarning( "XML error: Top tag was %s instead of the expected program information",
top.tagName().ascii() );
return false;
}
@@ -193,7 +193,7 @@ bool ProgramInformation::loadXML( const TQDomElement & top )
}
}
} else
- qWarning( "Node is not a comment or an element???" );
+ tqWarning( "Node is not a comment or an element???" );
}
return true;
}