diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:29:56 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:29:56 -0600 |
commit | 82fc754f7c4e43eace608a45c22e74e532bd33f1 (patch) | |
tree | 7e1217a13d974e19f4e03cd914de2a217e832f21 /languages/cpp/classgeneratorconfig.cpp | |
parent | 8d6fecdf83984625b9bc6d010a6a00ee670af344 (diff) | |
download | tdevelop-82fc754f7c4e43eace608a45c22e74e532bd33f1.tar.gz tdevelop-82fc754f7c4e43eace608a45c22e74e532bd33f1.zip |
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'languages/cpp/classgeneratorconfig.cpp')
-rw-r--r-- | languages/cpp/classgeneratorconfig.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/languages/cpp/classgeneratorconfig.cpp b/languages/cpp/classgeneratorconfig.cpp index f3dba7fb..f8b42f52 100644 --- a/languages/cpp/classgeneratorconfig.cpp +++ b/languages/cpp/classgeneratorconfig.cpp @@ -165,7 +165,7 @@ void ClassGeneratorConfig::readConfig() reformat_box->setChecked( config->readBoolEntry( "Reformat Source", 0 ) ); - KStandardDirs *dirs = CppSupportFactory::instance() ->dirs(); + TDEStandardDirs *dirs = CppSupportFactory::instance() ->dirs(); cppHeaderText = templateText( dirs->findResource( "newclasstemplates", "cpp_header" ) ); cppSourceText = templateText( dirs->findResource( "newclasstemplates", "cpp_source" ) ); @@ -211,7 +211,7 @@ void ClassGeneratorConfig::storeConfig() config->writeEntry( "Reformat Source", reformat_box->isChecked() ); - KStandardDirs *dirs = CppSupportFactory::instance() ->dirs(); + TDEStandardDirs *dirs = CppSupportFactory::instance() ->dirs(); saveTemplateText( dirs->saveLocation( "newclasstemplates" ) + "cpp_header", cppHeader() ); saveTemplateText( dirs->saveLocation( "newclasstemplates" ) + "cpp_source", cppSource() ); |