diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-28 11:58:30 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-28 11:58:30 -0500 |
commit | 88d2d2a710b7d065eb2c29b045f076ac6968e7aa (patch) | |
tree | e961086638f60997c2ffe4080403fc36e21f9a04 | |
parent | b04955edf40c2eb423e3f061e2340a07aedfeffd (diff) | |
download | kmyfirewall-88d2d2a710b7d065eb2c29b045f076ac6968e7aa.tar.gz kmyfirewall-88d2d2a710b7d065eb2c29b045f076ac6968e7aa.zip |
GCC 4.7 fixes.
-rw-r--r-- | kmyfirewall/genericinterface/kmfgenericinterfaceprotocol.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmyfirewall/genericinterface/kmfgenericinterfaceprotocol.cpp b/kmyfirewall/genericinterface/kmfgenericinterfaceprotocol.cpp index 0e32e99..6916cfd 100644 --- a/kmyfirewall/genericinterface/kmfgenericinterfaceprotocol.cpp +++ b/kmyfirewall/genericinterface/kmfgenericinterfaceprotocol.cpp @@ -312,7 +312,7 @@ void KMFGenericInterfaceProtocol::slotProtocolClicked( KMFProtocolUsage* protUsa m_zone, i18n("Add protocol %1 to zone %2.").arg( protUsage->protocol()->name() ).arg( m_zone->guiName() ) ); - KMFProtocolUsage * pro = m_zone->addProtocolUsage( protUsage->protocol()->uuid(), protUsage->protocol()->getDOMTree() ); + KMFProtocolUsage * prot = m_zone->addProtocolUsage( protUsage->protocol()->uuid(), protUsage->protocol()->getDOMTree() ); if ( pro ) { kdDebug() << "Added Protocol to zone: " << m_zone-> name() << endl; @@ -349,7 +349,7 @@ void KMFGenericInterfaceProtocol::slotProtocolClicked( KMFProtocolUsage* protUsa m_host, i18n("Add protocol %1 to host %2.").arg( protUsage->protocol()->name() ).arg( m_host->guiName() ) ); - KMFProtocolUsage * pro = m_host->addProtocolUsage( protUsage->protocol()->uuid(), protUsage->protocol() ->getDOMTree() ); + KMFProtocolUsage * prot = m_host->addProtocolUsage( protUsage->protocol()->uuid(), protUsage->protocol() ->getDOMTree() ); if ( pro ) { kdDebug() << "Added Protocol to host: " << m_host-> name() << endl; |