summaryrefslogtreecommitdiffstats
path: root/kresources/tvanytime/service.cpp
diff options
context:
space:
mode:
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 e4c3ff21..f713f7b1 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;
}