summaryrefslogtreecommitdiffstats
path: root/kmyfirewall/core/netfilterobject.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:56:15 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:56:15 -0600
commitdc97c53fce225cd37a63752957b740cf6a23e4c7 (patch)
tree1ab114aa83239fc024f4a4c40952d3c8a4508115 /kmyfirewall/core/netfilterobject.cpp
parentd737fa5621adb2f9504b4119a151615eeacba574 (diff)
downloadkmyfirewall-dc97c53fce225cd37a63752957b740cf6a23e4c7.tar.gz
kmyfirewall-dc97c53fce225cd37a63752957b740cf6a23e4c7.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit d737fa5621adb2f9504b4119a151615eeacba574.
Diffstat (limited to 'kmyfirewall/core/netfilterobject.cpp')
-rw-r--r--kmyfirewall/core/netfilterobject.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kmyfirewall/core/netfilterobject.cpp b/kmyfirewall/core/netfilterobject.cpp
index b7b4310..b975ee0 100644
--- a/kmyfirewall/core/netfilterobject.cpp
+++ b/kmyfirewall/core/netfilterobject.cpp
@@ -179,16 +179,16 @@ const TQString& NetfilterObject::getXMLSniplet() {
void NetfilterObject::loadUuid( TQDomNode& node, TQStringList& errors ) {
if ( ! node.toElement().hasAttribute( XML::Uuid_Attribute ) ) {
- errors.append( KMFError::getAsString( KMFError::WARNING, i18n( "No uuid saved in node %1" ).arg( node.nodeName () ) ) );
+ errors.append( KMFError::getAsString( KMFError::WARNING, i18n( "No uuid saved in node %1" ).tqarg( node.nodeName () ) ) );
return;
}
// if ( KMFUndoEngine::instance()->preserveObjectUuid() ) {
const TQString& newUuid = node.toElement().attribute( XML::Uuid_Attribute );
if ( newUuid.isEmpty() ) {
- errors.append( KMFError::getAsString( KMFError::WARNING, i18n( "No uuid saved in node %1" ).arg( node.nodeName () ) ) );
+ errors.append( KMFError::getAsString( KMFError::WARNING, i18n( "No uuid saved in node %1" ).tqarg( node.nodeName () ) ) );
return;
}
- // KMFUndoEngine::instance()->log( i18n( "Overwrite my uuid: %1 with %2" ).arg( uuid().toString() ).arg( newUuid ), KMFError::OK, this );
+ // KMFUndoEngine::instance()->log( i18n( "Overwrite my uuid: %1 with %2" ).tqarg( uuid().toString() ).tqarg( newUuid ), KMFError::OK, this );
setUuid( newUuid );
// }