diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:18:10 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:18:10 +0900 |
| commit | a1d5d51fe58cfdc6bd7e35153fa334c2fdde3354 (patch) | |
| tree | d8c85b6b07060dbb834cfe78f46209a64f3fa2e8 /kpresenter/KPrWebPresentation.cpp | |
| parent | cf85b9c285a2b9baa87c9d0cb9d683b48e82a475 (diff) | |
| download | koffice-a1d5d51fe58cfdc6bd7e35153fa334c2fdde3354.tar.gz koffice-a1d5d51fe58cfdc6bd7e35153fa334c2fdde3354.zip | |
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kpresenter/KPrWebPresentation.cpp')
| -rw-r--r-- | kpresenter/KPrWebPresentation.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kpresenter/KPrWebPresentation.cpp b/kpresenter/KPrWebPresentation.cpp index 886a47167..d76e208b0 100644 --- a/kpresenter/KPrWebPresentation.cpp +++ b/kpresenter/KPrWebPresentation.cpp @@ -58,7 +58,7 @@ #include <tdefiledialog.h> #include <tdemessagebox.h> #include <kbuttonbox.h> -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> #include <tdeapplication.h> #include <kprogress.h> #include <tdeglobal.h> @@ -198,7 +198,7 @@ void KPrWebPresentation::loadConfig() if ( config.isEmpty() ) return; - KSimpleConfig cfg( config ); + TDESimpleConfig cfg( config ); cfg.setGroup( "General" ); author = cfg.readEntry( "Author", author ); @@ -235,7 +235,7 @@ void KPrWebPresentation::loadConfig() void KPrWebPresentation::saveConfig() { - KSimpleConfig cfg( config ); + TDESimpleConfig cfg( config ); cfg.setGroup( "General" ); cfg.writeEntry( "Author", author ); |
