diff options
author | Michele Calgaro <[email protected]> | 2025-01-13 23:01:29 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 21:32:19 +0900 |
commit | 0b81a0c481a3a64d5449171a534bc8c91ae73181 (patch) | |
tree | 95cd236e86e934f492b4a4a1bd44bcf434a91ab2 /networkstatus/testservice.cpp | |
parent | 180ceca8bb26bbe97f60c99e5d172eb8ccd66e6d (diff) | |
download | tdelibs-0b81a0c481a3a64d5449171a534bc8c91ae73181.tar.gz tdelibs-0b81a0c481a3a64d5449171a534bc8c91ae73181.zip |
Rename TDEApplication::kApplication() to TDEApplication::tdeApplication() and kapp to tdeApp.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'networkstatus/testservice.cpp')
-rw-r--r-- | networkstatus/testservice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networkstatus/testservice.cpp b/networkstatus/testservice.cpp index 93dc096e5..3af65d143 100644 --- a/networkstatus/testservice.cpp +++ b/networkstatus/testservice.cpp @@ -29,14 +29,14 @@ TestService::TestService() : TQObject(), DCOPObject("ProviderIface") { - kapp->dcopClient()->registerAs("testservice" ); + tdeApp->dcopClient()->registerAs("testservice" ); m_service = new ServiceIface_stub( "kded", "networkstatus" ); m_status = NetworkStatus::Offline; NetworkStatus::Properties nsp; nsp.internet = true; nsp.name = "test_net"; nsp.onDemandPolicy = NetworkStatus::All; - nsp.service = kapp->dcopClient()->appId(); + nsp.service = tdeApp->dcopClient()->appId(); nsp.status = m_status; m_service->registerNetwork( "test_net", nsp ); } |