From 83677e35509b4dafac63b76995652bdf3b49f209 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 16 Dec 2011 09:59:34 -0600 Subject: Revert "Rename a number of old tq methods that are no longer tq specific" This reverts commit 808e453c56036211f57482ed847d54aca01bba68. --- kopete/libkopete/kopetenotifydataobject.cpp | 54 ++++++++++++++--------------- 1 file changed, 27 insertions(+), 27 deletions(-) (limited to 'kopete/libkopete/kopetenotifydataobject.cpp') diff --git a/kopete/libkopete/kopetenotifydataobject.cpp b/kopete/libkopete/kopetenotifydataobject.cpp index e3faf3f1..16ec1889 100644 --- a/kopete/libkopete/kopetenotifydataobject.cpp +++ b/kopete/libkopete/kopetenotifydataobject.cpp @@ -60,14 +60,14 @@ TQDomElement Kopete::NotifyDataObject::notifyDataToXML() if ( !d->events.isEmpty() ) { // - notifications = notify.createElement( TQString::fromLatin1( "custom-notifications" ) ); + notifications = notify.createElement( TQString::tqfromLatin1( "custom-notifications" ) ); TQDictIterator it( d->events ); for ( ; it.current(); ++it ) { // - TQDomElement event = notify.createElement( TQString::fromLatin1( "event" ) ); - event.setAttribute( TQString::fromLatin1( "name" ), it.currentKey() ); - event.setAttribute( TQString::fromLatin1( "suppress-common" ), TQString::fromLatin1( it.current()->suppressCommon() ? "true" : "false" ) ); + TQDomElement event = notify.createElement( TQString::tqfromLatin1( "event" ) ); + event.setAttribute( TQString::tqfromLatin1( "name" ), it.currentKey() ); + event.setAttribute( TQString::tqfromLatin1( "suppress-common" ), TQString::tqfromLatin1( it.current()->suppressCommon() ? "true" : "false" ) ); TQValueList presentations = it.current()->toXML(); // for ( TQValueList::Iterator it = presentations.begin(); it != presentations.end(); ++it ) @@ -80,57 +80,57 @@ TQDomElement Kopete::NotifyDataObject::notifyDataToXML() bool Kopete::NotifyDataObject::notifyDataFromXML( const TQDomElement& element ) { - if ( element.tagName() == TQString::fromLatin1( "custom-notifications" ) ) + if ( element.tagName() == TQString::tqfromLatin1( "custom-notifications" ) ) { TQDomNode field = element.firstChild(); while( !field.isNull() ) { //read an event TQDomElement fieldElement = field.toElement(); - if ( fieldElement.tagName() == TQString::fromLatin1( "event" ) ) + if ( fieldElement.tagName() == TQString::tqfromLatin1( "event" ) ) { // get its attributes - TQString name = fieldElement.attribute( TQString::fromLatin1( "name" ), TQString() ); - TQString suppress = fieldElement.attribute( TQString::fromLatin1( "suppress-common" ), TQString() ); - Kopete::NotifyEvent *evt = new Kopete::NotifyEvent( suppress == TQString::fromLatin1( "true" ) ); + TQString name = fieldElement.attribute( TQString::tqfromLatin1( "name" ), TQString() ); + TQString suppress = fieldElement.attribute( TQString::tqfromLatin1( "suppress-common" ), TQString() ); + Kopete::NotifyEvent *evt = new Kopete::NotifyEvent( suppress == TQString::tqfromLatin1( "true" ) ); - // get its children + // get its tqchildren TQDomNode child = fieldElement.firstChild(); while( !child.isNull() ) { TQDomElement childElement = child.toElement(); - if ( childElement.tagName() == TQString::fromLatin1( "sound-presentation" ) ) + if ( childElement.tagName() == TQString::tqfromLatin1( "sound-presentation" ) ) { // kdDebug(14010) << k_funcinfo << "read: sound" << endl; - TQString src = childElement.attribute( TQString::fromLatin1( "src" ) ); - TQString enabled = childElement.attribute( TQString::fromLatin1( "enabled" ) ); - TQString singleShot = childElement.attribute( TQString::fromLatin1( "single-shot" ) ); + TQString src = childElement.attribute( TQString::tqfromLatin1( "src" ) ); + TQString enabled = childElement.attribute( TQString::tqfromLatin1( "enabled" ) ); + TQString singleShot = childElement.attribute( TQString::tqfromLatin1( "single-shot" ) ); Kopete::EventPresentation *pres = new Kopete::EventPresentation( Kopete::EventPresentation::Sound, src, - ( singleShot == TQString::fromLatin1( "true" ) ), - ( enabled == TQString::fromLatin1( "true" ) ) ); + ( singleShot == TQString::tqfromLatin1( "true" ) ), + ( enabled == TQString::tqfromLatin1( "true" ) ) ); evt->setPresentation( Kopete::EventPresentation::Sound, pres ); // kdDebug(14010) << k_funcinfo << "after sound: " << evt->toString() << endl; } - if ( childElement.tagName() == TQString::fromLatin1( "message-presentation" ) ) + if ( childElement.tagName() == TQString::tqfromLatin1( "message-presentation" ) ) { // kdDebug(14010) << k_funcinfo << "read: msg" << endl; - TQString src = childElement.attribute( TQString::fromLatin1( "src" ) ); - TQString enabled = childElement.attribute( TQString::fromLatin1( "enabled" ) ); - TQString singleShot = childElement.attribute( TQString::fromLatin1( "single-shot" ) ); + TQString src = childElement.attribute( TQString::tqfromLatin1( "src" ) ); + TQString enabled = childElement.attribute( TQString::tqfromLatin1( "enabled" ) ); + TQString singleShot = childElement.attribute( TQString::tqfromLatin1( "single-shot" ) ); Kopete::EventPresentation *pres = new Kopete::EventPresentation( Kopete::EventPresentation::Message, src, - ( singleShot == TQString::fromLatin1( "true" ) ), - ( enabled == TQString::fromLatin1( "true" ) ) ); + ( singleShot == TQString::tqfromLatin1( "true" ) ), + ( enabled == TQString::tqfromLatin1( "true" ) ) ); evt->setPresentation( Kopete::EventPresentation::Message, pres ); // kdDebug(14010) << k_funcinfo << "after message: " << evt->toString() << endl; } - if ( childElement.tagName() == TQString::fromLatin1( "chat-presentation" ) ) + if ( childElement.tagName() == TQString::tqfromLatin1( "chat-presentation" ) ) { // kdDebug(14010) << k_funcinfo << "read: chat" << endl; - TQString enabled = childElement.attribute( TQString::fromLatin1( "enabled" ) ); - TQString singleShot = childElement.attribute( TQString::fromLatin1( "single-shot" ) ); + TQString enabled = childElement.attribute( TQString::tqfromLatin1( "enabled" ) ); + TQString singleShot = childElement.attribute( TQString::tqfromLatin1( "single-shot" ) ); Kopete::EventPresentation *pres = new Kopete::EventPresentation( Kopete::EventPresentation::Chat, TQString(), - ( singleShot == TQString::fromLatin1( "true" ) ), - ( enabled == TQString::fromLatin1( "true" ) ) ); + ( singleShot == TQString::tqfromLatin1( "true" ) ), + ( enabled == TQString::tqfromLatin1( "true" ) ) ); evt->setPresentation( Kopete::EventPresentation::Chat, pres ); // kdDebug(14010) << k_funcinfo << "after chat: " << evt->toString() << endl; } -- cgit v1.2.1