diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:27:20 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:27:20 -0600 |
commit | 3ebc2c64f254128a3e935b669d2da5a8fa42776f (patch) | |
tree | e809f79abdc802711cf912bf7790fc8373d2719c /client | |
parent | f503ada068467b85859f505c5406e20ad6e1abbb (diff) | |
download | twin-style-crystal-3ebc2c64f254128a3e935b669d2da5a8fa42776f.tar.gz twin-style-crystal-3ebc2c64f254128a3e935b669d2da5a8fa42776f.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'client')
-rw-r--r-- | client/crystalclient.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/crystalclient.cc b/client/crystalclient.cc index 4bb10d5..4dfdd59 100644 --- a/client/crystalclient.cc +++ b/client/crystalclient.cc @@ -1604,12 +1604,12 @@ void CrystalClient::closeButtonPressed() char param[20]; ClientWindows(&frame,&wrapper,&client); if (client != 0) { - KProcess *proc = new KProcess; + TDEProcess *proc = new TDEProcess; *proc << "kdocker"; sprintf(param,"0x%lx",client); *proc << "-d" << "-w" << param; - proc->start(KProcess::DontCare); + proc->start(TDEProcess::DontCare); } else { /* Sorry man */ } break; } |