diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:46 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:46 -0600 |
commit | 50d6569cdef5f0aac099f5d01864bd0e14f82ae3 (patch) | |
tree | c1df4e69800be09a5873c527831b700268dd7cdf /kdnssd/ioslave | |
parent | 9598af160810ee4dccabad48563ddecd071c6065 (diff) | |
download | tdenetwork-50d6569cdef5f0aac099f5d01864bd0e14f82ae3.tar.gz tdenetwork-50d6569cdef5f0aac099f5d01864bd0e14f82ae3.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kdnssd/ioslave')
-rw-r--r-- | kdnssd/ioslave/dnssd.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kdnssd/ioslave/dnssd.cpp b/kdnssd/ioslave/dnssd.cpp index 21be7de1..0f16008e 100644 --- a/kdnssd/ioslave/dnssd.cpp +++ b/kdnssd/ioslave/dnssd.cpp @@ -353,11 +353,11 @@ extern "C" { // KApplication is necessary to use other ioslaves putenv(strdup("SESSION_MANAGER=")); - KCmdLineArgs::init(argc, argv, "kio_zeroconf", 0, 0, 0, 0); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init(argc, argv, "kio_zeroconf", 0, 0, 0, 0); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication::disableAutoDcopRegistration(); KApplication app; - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); ZeroConfProtocol slave( args->arg(0), args->arg(1), args->arg(2) ); slave.dispatchLoop(); return 0; |