summaryrefslogtreecommitdiffstats
path: root/korundum/rubylib/korundum/kdehandlers.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 00:34:05 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 00:34:05 -0600
commit03ae68d4191e4bbcda82846552ad8c65202b4347 (patch)
tree0d4064314907975700a43fe88b4b6521976b4fb0 /korundum/rubylib/korundum/kdehandlers.cpp
parent4b98ad659d2ff415fc48e3f1d3b4a6076861f0ca (diff)
downloadtdebindings-03ae68d4191e4bbcda82846552ad8c65202b4347.tar.gz
tdebindings-03ae68d4191e4bbcda82846552ad8c65202b4347.zip
Rename KShared
Diffstat (limited to 'korundum/rubylib/korundum/kdehandlers.cpp')
-rw-r--r--korundum/rubylib/korundum/kdehandlers.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/korundum/rubylib/korundum/kdehandlers.cpp b/korundum/rubylib/korundum/kdehandlers.cpp
index 56d7d11b..d22adf53 100644
--- a/korundum/rubylib/korundum/kdehandlers.cpp
+++ b/korundum/rubylib/korundum/kdehandlers.cpp
@@ -399,7 +399,7 @@ void marshall_KServicePtr(Marshall *m) {
break;
case Marshall::ToVALUE:
{
- KSharedPtr<KService> *ptr = new KSharedPtr<KService>(*(KSharedPtr<KService>*)m->item().s_voidp);
+ TDESharedPtr<KService> *ptr = new TDESharedPtr<KService>(*(TDESharedPtr<KService>*)m->item().s_voidp);
if(ptr == 0) {
*(m->var()) = Qnil;
break;
@@ -447,7 +447,7 @@ void marshall_KServiceList(Marshall *m) {
for(KService::List::Iterator it = offerList->begin();
it != offerList->end();
++it) {
- KSharedPtr<KService> *ptr = new KSharedPtr<KService>(*it);
+ TDESharedPtr<KService> *ptr = new TDESharedPtr<KService>(*it);
KService * currentOffer = ptr->data();
VALUE obj = getPointerObject(currentOffer);
@@ -789,7 +789,7 @@ void marshall_KTraderOfferList(Marshall *m) {
for(KTrader::OfferList::Iterator it = offerList->begin();
it != offerList->end();
++it) {
- KSharedPtr<KService> *ptr = new KSharedPtr<KService>(*it);
+ TDESharedPtr<KService> *ptr = new TDESharedPtr<KService>(*it);
KService * currentOffer = ptr->data();
VALUE obj = getPointerObject(currentOffer);