diff options
author | Timothy Pearson <[email protected]> | 2013-01-31 00:36:34 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-31 00:36:34 -0600 |
commit | 12f3d421cd2991c0e3f96994efb836ce244172ff (patch) | |
tree | 1e5bd5e8b7521fe66d77c13b7df45df7d5f6dcd6 /tdecore/tdeconfig_compiler/tdeconfig_compiler.cpp | |
parent | 21bc7541114fb026606284e45dc10e3320f39f1d (diff) | |
download | tdelibs-12f3d421cd2991c0e3f96994efb836ce244172ff.tar.gz tdelibs-12f3d421cd2991c0e3f96994efb836ce244172ff.zip |
Rename KShared
Diffstat (limited to 'tdecore/tdeconfig_compiler/tdeconfig_compiler.cpp')
-rw-r--r-- | tdecore/tdeconfig_compiler/tdeconfig_compiler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdecore/tdeconfig_compiler/tdeconfig_compiler.cpp b/tdecore/tdeconfig_compiler/tdeconfig_compiler.cpp index c7f2fd7bd..4069561bb 100644 --- a/tdecore/tdeconfig_compiler/tdeconfig_compiler.cpp +++ b/tdecore/tdeconfig_compiler/tdeconfig_compiler.cpp @@ -1220,7 +1220,7 @@ int main( int argc, char **argv ) if ( !singleton ) { h << " " << className << "("; if (cfgFileNameArg) - h << " KSharedConfig::Ptr config" << (parameters.isEmpty() ? " = TDEGlobal::sharedConfig()" : ", "); + h << " TDESharedConfig::Ptr config" << (parameters.isEmpty() ? " = TDEGlobal::sharedConfig()" : ", "); for (TQValueList<Param>::ConstIterator it = parameters.begin(); it != parameters.end(); ++it) { @@ -1502,7 +1502,7 @@ int main( int argc, char **argv ) cpp << className << "::" << className << "( "; if ( cfgFileNameArg ) { if ( !singleton ) - cpp << " KSharedConfig::Ptr config"; + cpp << " TDESharedConfig::Ptr config"; else cpp << " const char *config"; cpp << (parameters.isEmpty() ? " " : ", "); |