diff options
author | Timothy Pearson <[email protected]> | 2013-01-20 00:23:57 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-20 00:23:57 -0600 |
commit | 2877440fbda2e245d04f534ed51d7cb7c0a06482 (patch) | |
tree | 874d2d10bf56b0547de792b6b6d48c4e895be034 /kdelirc/kcmlirc/editaction.cpp | |
parent | 6fdacb9c2e3adb3b5da38cd8a22afc1668e1d36b (diff) | |
download | tdeutils-2877440fbda2e245d04f534ed51d7cb7c0a06482.tar.gz tdeutils-2877440fbda2e245d04f534ed51d7cb7c0a06482.zip |
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'kdelirc/kcmlirc/editaction.cpp')
-rw-r--r-- | kdelirc/kcmlirc/editaction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kdelirc/kcmlirc/editaction.cpp b/kdelirc/kcmlirc/editaction.cpp index 8b1b03b..be113e6 100644 --- a/kdelirc/kcmlirc/editaction.cpp +++ b/kdelirc/kcmlirc/editaction.cpp @@ -315,7 +315,7 @@ void EditAction::updateDCOPApplications() TQStringList names; theDCOPApplications->clear(); - DCOPClient *theClient = KApplication::kApplication()->dcopClient(); + DCOPClient *theClient = TDEApplication::kApplication()->dcopClient(); QCStringList theApps = theClient->registeredApplications(); for(QCStringList::iterator i = theApps.begin(); i != theApps.end(); ++i) { @@ -337,7 +337,7 @@ void EditAction::updateDCOPApplications() void EditAction::updateDCOPObjects() { theDCOPObjects->clear(); - DCOPClient *theClient = KApplication::kApplication()->dcopClient(); + DCOPClient *theClient = TDEApplication::kApplication()->dcopClient(); if(theDCOPApplications->currentText().isNull() || theDCOPApplications->currentText().isEmpty()) return; QCStringList theObjects = theClient->remoteObjects(nameProgramMap[theDCOPApplications->currentText()].utf8()); if(!theObjects.size() && theDCOPApplications->currentText() == (*theAction).program()) theDCOPObjects->insertItem((*theAction).object()); |