summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/kopetenotifydataobject.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-22 00:30:31 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-22 00:30:31 +0000
commit69cac65817d949cda2672ec4f0aa73d5e66a0ba1 (patch)
tree073fde0496ea90eb5bf5cffe66a8da43a9f55fbc /kopete/libkopete/kopetenotifydataobject.cpp
parent3467e6464beac3a162839bf7078e22e3a74d73e7 (diff)
downloadtdenetwork-69cac65817d949cda2672ec4f0aa73d5e66a0ba1.tar.gz
tdenetwork-69cac65817d949cda2672ec4f0aa73d5e66a0ba1.zip
TQt4 port kdenetwork
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1237912 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/libkopete/kopetenotifydataobject.cpp')
-rw-r--r--kopete/libkopete/kopetenotifydataobject.cpp60
1 files changed, 30 insertions, 30 deletions
diff --git a/kopete/libkopete/kopetenotifydataobject.cpp b/kopete/libkopete/kopetenotifydataobject.cpp
index 7ba7ab80..9cde4133 100644
--- a/kopete/libkopete/kopetenotifydataobject.cpp
+++ b/kopete/libkopete/kopetenotifydataobject.cpp
@@ -39,13 +39,13 @@ Kopete::NotifyDataObject::~NotifyDataObject()
Kopete::NotifyEvent * Kopete::NotifyDataObject::notifyEvent( const TQString &event ) const
{
- Kopete::NotifyEvent *evt = d->events.find( event );
+ Kopete::NotifyEvent *evt = d->events.tqfind( event );
return evt;
}
void Kopete::NotifyDataObject::setNotifyEvent( const TQString& event, Kopete::NotifyEvent *notifyEvent )
{
- d->events.replace( event, notifyEvent );
+ d->events.tqreplace( event, notifyEvent );
}
bool Kopete::NotifyDataObject::removeNotifyEvent( const TQString &event )
@@ -60,14 +60,14 @@ TQDomElement Kopete::NotifyDataObject::notifyDataToXML()
if ( !d->events.isEmpty() )
{
//<custom-notifications>
- notifications = notify.createElement( TQString::fromLatin1( "custom-notifications" ) );
+ notifications = notify.createElement( TQString::tqfromLatin1( "custom-notifications" ) );
TQDictIterator<Kopete::NotifyEvent> it( d->events );
for ( ; it.current(); ++it )
{
//<event name="..." suppress-common="true|false">
- 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<TQDomElement> presentations = it.current()->toXML();
//<sound-notification enabled="true|false" src="..." single-shot="">
for ( TQValueList<TQDomElement>::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::null );
- TQString suppress = fieldElement.attribute( TQString::fromLatin1( "suppress-common" ), TQString::null );
- 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" ) );
- Kopete::EventPresentation *pres = new Kopete::EventPresentation( Kopete::EventPresentation::Chat, TQString::null,
- ( singleShot == TQString::fromLatin1( "true" ) ),
- ( enabled == TQString::fromLatin1( "true" ) ) );
+ 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::tqfromLatin1( "true" ) ),
+ ( enabled == TQString::tqfromLatin1( "true" ) ) );
evt->setPresentation( Kopete::EventPresentation::Chat, pres );
// kdDebug(14010) << k_funcinfo << "after chat: " << evt->toString() << endl;
}