diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 00:36:34 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 00:36:34 -0600 |
commit | 12f3d421cd2991c0e3f96994efb836ce244172ff (patch) | |
tree | 1e5bd5e8b7521fe66d77c13b7df45df7d5f6dcd6 /tdespell2/broker.cpp | |
parent | 21bc7541114fb026606284e45dc10e3320f39f1d (diff) | |
download | tdelibs-12f3d421cd2991c0e3f96994efb836ce244172ff.tar.gz tdelibs-12f3d421cd2991c0e3f96994efb836ce244172ff.zip |
Rename KShared
Diffstat (limited to 'tdespell2/broker.cpp')
-rw-r--r-- | tdespell2/broker.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tdespell2/broker.cpp b/tdespell2/broker.cpp index a5df8178c..5e03c377b 100644 --- a/tdespell2/broker.cpp +++ b/tdespell2/broker.cpp @@ -56,11 +56,11 @@ public: TQPtrDict<Broker> *Broker::s_brokers = 0; -Broker *Broker::openBroker( KSharedConfig *config ) +Broker *Broker::openBroker( TDESharedConfig *config ) { - KSharedConfig::Ptr preventDeletion; + TDESharedConfig::Ptr preventDeletion; if ( !config ) { - preventDeletion = KSharedConfig::openConfig( DEFAULT_CONFIG_FILE ); + preventDeletion = TDESharedConfig::openConfig( DEFAULT_CONFIG_FILE ); } else preventDeletion = config; @@ -74,9 +74,9 @@ Broker *Broker::openBroker( KSharedConfig *config ) return broker; } -Broker::Broker( KSharedConfig *config ) +Broker::Broker( TDESharedConfig *config ) { - KSharedConfig::Ptr preventDeletion( config ); + TDESharedConfig::Ptr preventDeletion( config ); Q_UNUSED( preventDeletion ); if ( !s_brokers ) |